File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed
Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.2.0
2+ current_version = 1.2.1
33commit = True
44tag = False
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
7377history = ''
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
7781setup (
7882 name = 'raiden-webui' ,
Original file line number Diff line number Diff line change 11// Do not change this, this is maintained by bumpversion.
2- export const version = '1.2.0 ' ;
2+ export const version = '1.2.1 ' ;
You can’t perform that action at this time.
0 commit comments