diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 379a01e..a6f993b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0-beta.1 +current_version = 1.4.0-beta.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/setup.py b/setup.py index 0c0a2b0..095dc1c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.4.0-beta.1" +VERSION = "1.4.0-beta.2" 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 db318fe..6f181f6 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.1" + expected_version = "1.4.0-beta.2" if "beta" not in expected_version: assert w3.api.startswith(expected_version)