diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3efb967b..2648eecc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index cd5b5c26..25c3f263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [1.0.2] - 2020-07-14 ### Added - [#485] Header shows the RDN tokens deposited to the UDC and token on-chain balances. @@ -153,7 +155,8 @@ token network. ### Changed - First python package release. -[Unreleased]: https://github.com/raiden-network/webui/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/raiden-network/webui/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/raiden-network/webui/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/raiden-network/webui/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/raiden-network/webui/compare/v0.11.0...v1.0.0 [0.11.1]: https://github.com/raiden-network/webui/compare/v0.11.0...v0.11.1 diff --git a/package-lock.json b/package-lock.json index 476d4370..0d7d5bf4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "raiden-webui", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0bfdf8df..802b3f79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "raiden-webui", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "scripts": { "ng": "ng", diff --git a/setup.py b/setup.py index 2c1f4d03..f3e841f1 100755 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def run(self): history = '' -version = '1.0.1' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg) +version = '1.0.2' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg) setup( name='raiden-webui', diff --git a/src/version.ts b/src/version.ts index 6f3ebe12..9e9bf09b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ // Do not change this, this is maintained by bumpversion. -export const version = '1.0.1'; +export const version = '1.0.2';