diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f90e5e3..dcc0f02 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.1 +current_version = 1.4.2 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 ea3f230..9a71f66 100644 --- a/docs/en/CHANGELOG.md +++ b/docs/en/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Logs +## 1.4.2 + +* chore: bump web3.py to 7.10.0 +* chore: pin cfx-* package versions + +## 1.4.1 + +* fix: packing issues + ## 1.4.0 * bump web3.py to 7.8.0 diff --git a/setup.py b/setup.py index 81ef96b..eb667a2 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.4.1" +VERSION = "1.4.2" DESCRIPTION = 'Python SDK for Conflux network' with open('./README.md') as readme: long_description = readme.read() @@ -101,11 +101,11 @@ "cns": ["py.typed"]}, url='https://github.com/conflux-chain/python-conflux-sdk', install_requires=[ - "web3==7.8.0", - "cfx-address>=1.2.0", - "cfx-account>=1.2.0", - "cfx-utils>=1.0.5", - ], # add any additional packages that + "web3==7.10.0", + "cfx-address>=1.2.4,<1.3.0", + "cfx-account>=1.2.2,<1.3.0", + "cfx-utils>=1.0.5,<1.2.0", + ], # add any additional packages that need to be installed # needs to be installed along with your package. Eg: 'caer' extras_require=extras_require, keywords=['python', 'conflux', 'blockchain'], diff --git a/tests/base_features/test_api.py b/tests/base_features/test_api.py index 31ff599..65f58c7 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.1" + expected_version = "1.4.2" if "beta" not in expected_version: assert w3.api.startswith(expected_version)