From 1c3e807c144b4fa52eac0c20f5745dcb110f9d53 Mon Sep 17 00:00:00 2001 From: Dmytro Tkachuk Date: Tue, 8 Oct 2019 16:46:00 +0300 Subject: [PATCH 1/2] SKALE-1574 fix exit status for master branch --- scripts/calculate_version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/calculate_version.sh b/scripts/calculate_version.sh index 8076248c..ae815993 100644 --- a/scripts/calculate_version.sh +++ b/scripts/calculate_version.sh @@ -18,7 +18,7 @@ fi if [[ $BRANCH == 'master' ]]; then echo $VERSION - exit 1 + exit 0 elif [[ $BRANCH == 'develop' ]]; then POSTFIX="dev" elif [[ $BRANCH == 'beta' ]]; then From 9310f883f7f04af95427837602ec6068898e3a47 Mon Sep 17 00:00:00 2001 From: Dmytro Tkachuk Date: Tue, 8 Oct 2019 17:06:27 +0300 Subject: [PATCH 2/2] SKALE-1574 update lib base version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 37c47de6..4f99c672 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name='skale.py', # *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility. - version='1.0', + version='1.1', description='SKALE client tools', long_description_markdown_filename='README.md', author='SKALE Labs',