diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8f70194..3b67070 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.3 +current_version = 1.2.4 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/setup.py b/setup.py index 55fb343..5371030 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.2.3" +VERSION = "1.2.4" 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 0d23f00..59a59aa 100644 --- a/tests/base_features/test_api.py +++ b/tests/base_features/test_api.py @@ -1,2 +1,2 @@ def test_api_version(w3): - assert w3.api.startswith("1.2.3") + assert w3.api.startswith("1.2.4")