Skip to content

Commit c48b609

Browse files
authored
release: 12.2.1 (#1033)
1 parent a88e369 commit c48b609

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@ Release History
33

44
### Pending
55

6+
### Version 12.2.1
7+
8+
Released on April 11, 2025
9+
610
#### Update
711
- fix: fix the issue where sending assets using `Transaction.append_payment_to_contract_op` fails when the sender's account is the same as the asset issuer's account. ([#1029](https://github.com/StellarCN/py-stellar-base/pull/1029))
812
- fix: allow `SorobanServer.get_events()`, `.get_transactions()`, and `.get_ledgers()` to be paginated by making the `start_ledger` argument optional. ([#1032](https://github.com/StellarCN/py-stellar-base/pull/1032))
913

1014
### Version 12.2.0
1115

16+
Released on March 04, 2025
17+
1218
#### Update
1319
- feat: add `TransactionBuilder.append_payment_to_contract_op` and `TransactionBuilder.append_restore_asset_balance_entry_op` to send assets to contract accounts without relying on Stellar RPC. ([#1023](https://github.com/StellarCN/py-stellar-base/pull/1023))
1420
- refactor: `AssembledTransaction.simulate` and `AssembledTransactionAsync.simulate` will no longer restore the state for read-only transactions. ([#1026](https://github.com/StellarCN/py-stellar-base/pull/1026))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "stellar-sdk"
3-
version = "12.2.0"
3+
version = "12.2.1"
44
description = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server."
55
authors = [
66
"overcat <[email protected]>",

stellar_sdk/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server."
1212
__url__ = "https://github.com/StellarCN/py-stellar-base"
1313
__issues__ = f"{__url__}/issues"
14-
__version__ = "12.2.0"
14+
__version__ = "12.2.1"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

0 commit comments

Comments
 (0)