From f8a091d8df67edddc9fe8859e09db9f5e4a73e72 Mon Sep 17 00:00:00 2001 From: Jun Luo <4catcode@gmail.com> Date: Sat, 16 Dec 2023 12:02:56 +0800 Subject: [PATCH] release: 9.1.0 (#848) --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- stellar_sdk/__version__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcb6e684..5ca3f1a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Release History ### Pending +### Version 9.1.0 + +Released on Dec 16, 2023 + +#### Update +- feat: support resource leeway parameter when simulating Soroban transactions. ([#846](https://github.com/StellarCN/py-stellar-base/pull/846)) +- refactor: the type of `GetEventsRequest.start_ledger` has changed from `str` to `int`. ([#847](https://github.com/StellarCN/py-stellar-base/pull/847)) + ### Version 9.0.0 Released on Dec 9, 2023 diff --git a/pyproject.toml b/pyproject.toml index 6f69e1d0..aa24f425 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stellar-sdk" -version = "9.0.0" +version = "9.1.0" description = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server." authors = [ "overcat <4catcode@gmail.com>", diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index d8cc3acb..a4f2eacc 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 and Soroban-RPC server." __url__ = "https://github.com/StellarCN/py-stellar-base" __issues__ = f"{__url__}/issues" -__version__ = "9.0.0" +__version__ = "9.1.0" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"