Skip to content
Merged

Dev #69

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.3
current_version = 1.4.4
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.4

* chore: pin typing-extensions to 4.13.2

## 1.4.3

* chore: bump web3.py to 7.11.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
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.3"
expected_version = "1.4.4"
if "beta" not in expected_version:
assert w3.api.startswith(expected_version)