Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.2
current_version = 1.4.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
Expand Down
4 changes: 4 additions & 0 deletions docs/en/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/base_features/test_api.py
Original file line number Diff line number Diff line change
@@ -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)
Loading