From f2c23db822304745cf8b170e9fc299c058458adb Mon Sep 17 00:00:00 2001 From: Lorenz Herzberger Date: Tue, 5 Jul 2022 15:06:43 +0200 Subject: [PATCH] updated version number to 1.0.0 Signed-off-by: Lorenz Herzberger --- CHANGELOG.md | 2 ++ .../source/connecting/http-samples/api-index-response.http | 2 +- .../root/source/connecting/http-samples/index-response.http | 6 +++--- planetmint/version.py | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d7b61..a093e9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ For reference, the possible headings are: * **Notes** ## [Unreleased] + +## [1.0.0] ### Feature Update Tarantool integration diff --git a/docs/root/source/connecting/http-samples/api-index-response.http b/docs/root/source/connecting/http-samples/api-index-response.http index 178f1fd..b2a074d 100644 --- a/docs/root/source/connecting/http-samples/api-index-response.http +++ b/docs/root/source/connecting/http-samples/api-index-response.http @@ -4,7 +4,7 @@ Content-Type: application/json { "assets": "/assets/", "blocks": "/blocks/", - "docs": "https://docs.planetmint.com/projects/server/en/v0.9.9/http-client-server-api.html", + "docs": "https://docs.planetmint.com/projects/server/en/v1.0.0/http-client-server-api.html", "metadata": "/metadata/", "outputs": "/outputs/", "streamedblocks": "ws://localhost:9985/api/v1/streams/valid_blocks", diff --git a/docs/root/source/connecting/http-samples/index-response.http b/docs/root/source/connecting/http-samples/index-response.http index b960b69..2cfc34d 100644 --- a/docs/root/source/connecting/http-samples/index-response.http +++ b/docs/root/source/connecting/http-samples/index-response.http @@ -6,7 +6,7 @@ Content-Type: application/json "v1": { "assets": "/api/v1/assets/", "blocks": "/api/v1/blocks/", - "docs": "https://docs.planetmint.com/projects/server/en/v0.9.9/http-client-server-api.html", + "docs": "https://docs.planetmint.com/projects/server/en/v1.0.0/http-client-server-api.html", "metadata": "/api/v1/metadata/", "outputs": "/api/v1/outputs/", "streamedblocks": "ws://localhost:9985/api/v1/streams/valid_blocks", @@ -15,7 +15,7 @@ Content-Type: application/json "validators": "/api/v1/validators" } }, - "docs": "https://docs.planetmint.com/projects/server/en/v0.9.9/", + "docs": "https://docs.planetmint.com/projects/server/en/v1.0.0/", "software": "Planetmint", - "version": "0.9.9" + "version": "1.0.0" } diff --git a/planetmint/version.py b/planetmint/version.py index c87f33f..bd740c4 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__ = "0.9.9" -__short_version__ = "0.9" +__version__ = "1.0.0" +__short_version__ = "1.0" # Supported Tendermint versions __tm_supported_versions__ = ["0.34.15"]