diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 211143e..75b19ff 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.1 +current_version = 1.2.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/setup.py b/setup.py index 4801913..7dda44a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.2.1" +VERSION = "1.2.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 27f058c..e09cc74 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.1") + assert w3.api.startswith("1.2.2")