diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e2708f..360d99f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ For reference, the possible headings are: * **Known Issues** * **Notes** +## [1.4.1] - 2022-21-12 +* **fixed** inconsistent cryptocondition keyring tag handling. Using cryptoconditions > 1.1.0 from now on. + ## [1.4.0] - 2022-12-12 * **Added** added upgrade compatibility to older nodes to support v2.0 TX validity for nodes supporting v3.0 transactions (planetmint-transactions >= 0.4.1) diff --git a/planetmint/version.py b/planetmint/version.py index 874c6f9..f4bc962 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.0" +__version__ = "1.4.1" __short_version__ = "1.4" # Supported Tendermint versions diff --git a/setup.py b/setup.py index ba3b458..aea37c9 100644 --- a/setup.py +++ b/setup.py @@ -130,7 +130,7 @@ install_requires = [ "planetmint-ipld>=0.0.3", "pyasn1>=0.4.8", "python-decouple", - "planetmint-transactions>=0.4.1", + "planetmint-transactions>=0.5.0", ] setup(