Skip to content

Commit 7d25233

Browse files
authored
Merge pull request #625 from manuelwedler/fix-ci-build
Fix CI build and bump version 1.2.0 → 1.2.1
2 parents 8397e3b + 3fe21f3 commit 7d25233

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.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.2.0
2+
current_version = 1.2.1
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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [1.2.1] - 2020-04-26
6+
### Fixed
7+
- Fixed a problem in the build process of v1.2.0.
8+
59
## [1.2.0] - 2020-04-26
610
### Added
711
- [#556] New dialog for interacting with the UDC. The dialog enables depositing and withdrawing tokens.
@@ -181,7 +185,8 @@ token network.
181185
### Changed
182186
- First python package release.
183187

184-
[Unreleased]: https://github.com/raiden-network/webui/compare/v1.2.0...HEAD
188+
[Unreleased]: https://github.com/raiden-network/webui/compare/v1.2.1...HEAD
189+
[1.2.1]: https://github.com/raiden-network/webui/compare/v1.2.0...v1.2.1
185190
[1.2.0]: https://github.com/raiden-network/webui/compare/v1.1.1...v1.2.0
186191
[1.1.1]: https://github.com/raiden-network/webui/compare/v1.1.0...v1.1.1
187192
[1.1.0]: https://github.com/raiden-network/webui/compare/v1.0.2...v1.1.0

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.2.0",
3+
"version": "1.2.1",
44
"license": "MIT",
55
"scripts": {
66
"preinstall": "npx only-allow yarn",

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ def finalize_options(self):
3030
def run(self):
3131
yarn = find_executable('yarn')
3232
if not yarn:
33-
raise RuntimeError('Yarn not found. Aborting')
33+
self.announce(
34+
'Yarn not found. Skipping webUI compilation',
35+
level=distutils.log.WARN, # pylint: disable=no-member
36+
)
37+
return
3438

3539
yarn_run = 'build:prod'
3640
if self.dev is not None:
@@ -72,7 +76,7 @@ def run(self):
7276

7377
history = ''
7478

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

7781
setup(
7882
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.2.0';
2+
export const version = '1.2.1';

0 commit comments

Comments
 (0)