Skip to content

Commit 2a6a936

Browse files
committed
release: 1.4.0
- Adapt to Protocol v12. [PathPaymentStrictReceive](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L307), [PathPaymentStrictSend](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L403) are supported. - Breaking change: [PathPayment](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L1352) are marked as deprecated, although you can still use them now, please update your code immediately. - The [Builder](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/builder.py) was also affected by the above changes, added `append_path_payment_strict_receive_op` and `append_path_payment_strict_send_op`. `append_path_payment_op` are deprecated.
1 parent 8de7d7e commit 2a6a936

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
Release History
22
===============
33

4+
### Version 1.4.0
5+
Released on October 8, 2019
6+
- Adapt to Protocol v12. [PathPaymentStrictReceive](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L307),
7+
[PathPaymentStrictSend](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L403) are supported.
8+
- Breaking change: [PathPayment](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/operation.py#L1352) are marked as deprecated, although you can still use them now, please update your code immediately.
9+
- The [Builder](https://github.com/StellarCN/py-stellar-base/blob/e2663afdcc/stellar_base/builder.py) was also affected by the above changes, added `append_path_payment_strict_receive_op` and `append_path_payment_strict_send_op`. `append_path_payment_op` are deprecated.
10+
411
### Version 1.3.2
512
Released on September 24, 2019
6-
* Add `Builder.verify_challenge_tx` method for verifying [SEP-10](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) challenge transaction.
7-
13+
- Add `Builder.verify_challenge_tx` method for verifying [SEP-10](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) challenge transaction.
814

915
### Version 1.3.1
1016
Released on August 4, 2019
11-
* Add `Builder.challenge_tx` method for building [SEP-10](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) challenge transaction.
17+
- Add `Builder.challenge_tx` method for building [SEP-10](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md) challenge transaction.
1218

1319
### Version 1.3.0
1420
Released on July 24, 2019

stellar_base/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.2"
1+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)