diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 00e9273..fa17b11 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.3 +current_version = 1.4.4 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/docs/en/CHANGELOG.md b/docs/en/CHANGELOG.md index 7f61628..29a65b7 100644 --- a/docs/en/CHANGELOG.md +++ b/docs/en/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Logs +## 1.4.4 + +* chore: pin typing-extensions to 4.13.2 + ## 1.4.3 * chore: bump web3.py to 7.11.1 diff --git a/setup.py b/setup.py index a923737..514aba5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.4.3" +VERSION = "1.4.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 b4db468..e1da0bd 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.3" + expected_version = "1.4.4" if "beta" not in expected_version: assert w3.api.startswith(expected_version)