From 01f4804ca67ec97b167e578431319cf20127081e Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Thu, 22 May 2025 16:31:45 +0800 Subject: [PATCH 1/3] chore: bump web3 version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb667a2..221d855 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,7 @@ "cns": ["py.typed"]}, url='https://github.com/conflux-chain/python-conflux-sdk', install_requires=[ - "web3==7.10.0", + "web3==7.11.1", "cfx-address>=1.2.4,<1.3.0", "cfx-account>=1.2.2,<1.3.0", "cfx-utils>=1.0.5,<1.2.0", From 35d1b442f03cb47d0edabf293db971e88ae03b5b Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Thu, 22 May 2025 16:58:30 +0800 Subject: [PATCH 2/3] =?UTF-8?q?Bump=20version:=201.4.2=20=E2=86=92=201.4.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- tests/base_features/test_api.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index dcc0f02..00e9273 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.2 +current_version = 1.4.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? diff --git a/setup.py b/setup.py index 221d855..be94fae 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup, ) -VERSION = "1.4.2" +VERSION = "1.4.3" 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 65f58c7..b4db468 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.2" + expected_version = "1.4.3" if "beta" not in expected_version: assert w3.api.startswith(expected_version) From 45498f1e53dddc4bacf25c1c0dadf041873eb772 Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Thu, 22 May 2025 16:59:49 +0800 Subject: [PATCH 3/3] chore: update CHANGELOG for version 1.4.3 and bump web3.py to 7.11.1 --- docs/en/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/en/CHANGELOG.md b/docs/en/CHANGELOG.md index 9a71f66..7f61628 100644 --- a/docs/en/CHANGELOG.md +++ b/docs/en/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Logs +## 1.4.3 + +* chore: bump web3.py to 7.11.1 + ## 1.4.2 * chore: bump web3.py to 7.10.0