diff --git a/CHANGELOG.md b/CHANGELOG.md index 360d99f..7345905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ For reference, the possible headings are: * **Known Issues** * **Notes** +## [1.4.2] - 2023-14-02 +* **fixed** fixed voting/election backward compatibility issue (using planetmint-transactions >= 0.7.0) + ## [1.4.1] - 2022-21-12 * **fixed** inconsistent cryptocondition keyring tag handling. Using cryptoconditions > 1.1.0 from now on. diff --git a/planetmint/version.py b/planetmint/version.py index f4bc962..b4fcdd8 100644 --- a/planetmint/version.py +++ b/planetmint/version.py @@ -3,7 +3,7 @@ # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 -__version__ = "1.4.1" +__version__ = "1.4.2" __short_version__ = "1.4" # Supported Tendermint versions diff --git a/setup.py b/setup.py index a9fc93b..accb392 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ docs_require = [ "pyparsing==3.0.8", "pytz==2022.1", "PyYAML>=5.4.0", - "requests>=2.25i.1", + "requests>=2.25.1", "six==1.16.0", "snowballstemmer==2.2.0", "Sphinx==4.5.0", @@ -129,7 +129,7 @@ install_requires = [ "planetmint-ipld>=0.0.3", "pyasn1>=0.4.8", "python-decouple", - "planetmint-transactions>=0.5.0", + "planetmint-transactions>=0.7.0", ] setup(