From 367b101fb211660ecdfcc028c1a176427d9dc5bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Wed, 1 Mar 2023 15:17:04 +0100 Subject: [PATCH] set verion number and changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- CHANGELOG.md | 6 ++++++ planetmint/version.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2633d9..4d53565 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,12 @@ For reference, the possible headings are: * **Known Issues** * **Notes** +## [2.3.0] - 2023-01-03 +* **Fixed** double usage of the tarantool driver in one instance that lead to crashes +* **Changed** refactored a lot of classes and the structure +* **Changed** upgraded to tarantool driver 0.12.1 + + ## [2.2.4] - 2023-15-02 * **Fixed** subcondition instantiation now works recursively * **Changed** migrated dependency management to poetry diff --git a/planetmint/version.py b/planetmint/version.py index 77bc80f..d2d001d 100644 --- a/planetmint/version.py +++ b/planetmint/version.py @@ -3,8 +3,8 @@ # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 -__version__ = "2.2.4" -__short_version__ = "2.2" +__version__ = "2.3.0" +__short_version__ = "2.3" # Supported Tendermint versions __tm_supported_versions__ = ["0.34.15"] diff --git a/pyproject.toml b/pyproject.toml index 5f54921..136921d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "planetmint" -version = "2.2.4" +version = "2.3.0" description = "Planetmint: The Blockchain Database" authors = ["Planetmint contributors"] license = "AGPLv3"