Skip to content

Commit 8397e3b

Browse files
committed
Bump version: 1.1.1 → 1.2.0
1 parent fdc315d commit 8397e3b

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.1
2+
current_version = 1.2.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [1.2.0] - 2020-04-26
46
### Added
57
- [#556] New dialog for interacting with the UDC. The dialog enables depositing and withdrawing tokens.
68
- [#195] Services tokens can be minted from the UDC dialog.
@@ -179,7 +181,8 @@ token network.
179181
### Changed
180182
- First python package release.
181183

182-
[Unreleased]: https://github.com/raiden-network/webui/compare/v1.1.1...HEAD
184+
[Unreleased]: https://github.com/raiden-network/webui/compare/v1.2.0...HEAD
185+
[1.2.0]: https://github.com/raiden-network/webui/compare/v1.1.1...v1.2.0
183186
[1.1.1]: https://github.com/raiden-network/webui/compare/v1.1.0...v1.1.1
184187
[1.1.0]: https://github.com/raiden-network/webui/compare/v1.0.2...v1.1.0
185188
[1.0.2]: https://github.com/raiden-network/webui/compare/v1.0.1...v1.0.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raiden-webui",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"license": "MIT",
55
"scripts": {
66
"preinstall": "npx only-allow yarn",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def run(self):
7272

7373
history = ''
7474

75-
version = '1.1.1' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg)
75+
version = '1.2.0' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg)
7676

7777
setup(
7878
name='raiden-webui',

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Do not change this, this is maintained by bumpversion.
2-
export const version = '1.1.1';
2+
export const version = '1.2.0';

0 commit comments

Comments
 (0)