From d39fa8985cc0360e2bbed7d349b39e90a65d8d44 Mon Sep 17 00:00:00 2001 From: Jun Luo <4catcode@gmail.com> Date: Wed, 24 Nov 2021 08:50:24 +0800 Subject: [PATCH] release: 6.1.1 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- stellar_sdk/__version__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3015f0bd..e1cba16f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Release History ============== +### Version 6.1.1 +Released on November 24, 2021 + +#### Update +* Specify the version of urllib3 >= 1.26.7 and < 2.0.0. ([#563](https://github.com/StellarCN/py-stellar-base/pull/563)) + ### Version 6.1.0 Released on November 17, 2021 diff --git a/pyproject.toml b/pyproject.toml index 5c64c589..e37c4f3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stellar-sdk" -version = "6.1.0" +version = "6.1.1" description = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon." authors = [ "overcat <4catcode@gmail.com>", diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index 4fc4ae6a..94575efc 100644 --- a/stellar_sdk/__version__.py +++ b/stellar_sdk/__version__.py @@ -11,7 +11,7 @@ __description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon." __url__ = "https://github.com/StellarCN/py-stellar-base" __issues__ = f"{__url__}/issues" -__version__ = "6.1.0" +__version__ = "6.1.1" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"