diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a6f993b..7109769 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0-beta.2 +current_version = 1.4.0-beta.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/setup.py b/setup.py index 095dc1c..784e971 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.4.0-beta.2" +VERSION = "1.4.0-beta.3" DESCRIPTION = 'Python SDK for Conflux network' with open('./README.md') as readme: long_description = readme.read() diff --git a/tests/base_features/test_api.py b/tests/base_features/test_api.py index 6f181f6..110a2aa 100644 --- a/tests/base_features/test_api.py +++ b/tests/base_features/test_api.py @@ -1,4 +1,4 @@ def test_api_version(w3): - expected_version = "1.4.0-beta.2" + expected_version = "1.4.0-beta.3" if "beta" not in expected_version: assert w3.api.startswith(expected_version)