We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56a4f3 commit edf610cCopy full SHA for edf610c
.bumpversion.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 1.4.0
+current_version = 1.4.1
3
commit = True
4
tag = True
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
setup.py
@@ -5,7 +5,7 @@
setup,
6
)
7
8
-VERSION = "1.4.0"
+VERSION = "1.4.1"
9
DESCRIPTION = 'Python SDK for Conflux network'
10
with open('./README.md') as readme:
11
long_description = readme.read()
tests/base_features/test_api.py
@@ -1,4 +1,4 @@
def test_api_version(w3):
- expected_version = "1.4.0"
+ expected_version = "1.4.1"
if "beta" not in expected_version:
assert w3.api.startswith(expected_version)
0 commit comments