From 32a49ee6176f38d1ee725e43165b780db8b4518b Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:11:39 +0800 Subject: [PATCH 1/2] chore: update CHANGELOG for version 1.4.4 and pin typing-extensions to 4.13.2 --- docs/en/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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 From 681356fd40ccd6dbd5c8a7f839d0a867eeb7e300 Mon Sep 17 00:00:00 2001 From: darwintree <17946284+darwintree@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:12:16 +0800 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=201.4.3=20=E2=86=92=201.4.4?= 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 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/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)