Skip to content

Commit 43caa83

Browse files
committed
release: 2.1.1
* feat: update challenge tx helpers for SEP-0010 v1.3.0.
1 parent e004589 commit 43caa83

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ Release History
22
===============
33

44
### Version 2.1.1
5-
Unreleased
5+
Released on January 31, 2020
66

7-
* feat: update challenge tx helpers for SEP-0010 v1.3.0
7+
* feat: update challenge tx helpers for SEP-0010 v1.3.0.
88

99
### Version 2.1.0
1010
Released on January 04, 2020

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Install and update using `pipenv`_ or `pip`_:
5151

5252
.. code-block:: text
5353
54-
pip install stellar-sdk==2.1.0
54+
pip install stellar-sdk==2.1.1
5555
5656
5757
A Simple Example

docs/en/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To install py-stellar-sdk, use pipenv to install the module:
1111

1212
.. code-block:: text
1313
14-
pipenv install stellar-sdk==2.1.0
14+
pipenv install stellar-sdk==2.1.1
1515
1616
If you're not using `pipenv <https://docs.pipenv.org/>`_, you should.
1717
Otherwise, you can install it via plain old `pip <https://pip.pypa.io/en/stable/quickstart/>`_. More on installing Python
@@ -29,5 +29,5 @@ You can clone `the repository <https://github.com/StellarCN/py-stellar-base>`_ d
2929
3030
git clone https://github.com/StellarCN/py-stellar-base.git
3131
cd py-stellar-base
32-
git checkout 2.1.0
32+
git checkout 2.1.1
3333
pip install .

docs/zh_CN/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
.. code-block:: text
1313
14-
pipenv install stellar-sdk==2.1.0
14+
pipenv install stellar-sdk==2.1.1
1515
1616
我们推荐你使用 `pipenv <https://docs.pipenv.org/>`_ 来安装这个模块。当然你也可以使用 `pip <https://pip.pypa.io/en/stable/quickstart/>`_。
1717
想要更多的了解如何安装依赖,请参阅 `Hitchhiker's Guide to Python
@@ -28,5 +28,5 @@
2828
2929
git clone https://github.com/StellarCN/py-stellar-base.git
3030
cd py-stellar-base
31-
git checkout 2.1.0
31+
git checkout 2.1.1
3232
pip install .

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."
1212
__url__ = "https://github.com/StellarCN/py-stellar-base"
1313
__issues__ = "{}/issues".format(__url__)
14-
__version__ = "2.1.1-beta1"
14+
__version__ = "2.1.1"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

stellar_sdk/call_builder/paths_call_builder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(
3636
) -> None:
3737

3838
warnings.warn(
39-
"Will be removed in version v2.1.0, "
39+
"Will be removed in version v2.3.0, "
4040
"use stellar_sdk.call_builder.StrictReceivePathsCallBuilder",
4141
DeprecationWarning,
4242
)

stellar_sdk/operation/path_payment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(
3737
source: str = None,
3838
) -> None:
3939
warnings.warn(
40-
"Will be removed in version v2.1.0, "
40+
"Will be removed in version v2.3.0, "
4141
"use stellar_sdk.operation.PathPaymentStrictReceive",
4242
DeprecationWarning,
4343
)

stellar_sdk/sep/stellar_web_authentication.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def build_challenge_transaction(
6868
def read_challenge_transaction(
6969
challenge_transaction: str, server_account_id: str, network_passphrase: str
7070
) -> Tuple[TransactionEnvelope, str]:
71-
"""Reads a SEP 10 challenge transaction and returns the decoded transaction envelope and client account ID contained within..
71+
"""Reads a SEP 10 challenge transaction and returns the decoded transaction envelope and client account ID contained within.
7272
7373
It also verifies that transaction is signed by the server.
7474

stellar_sdk/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def paths(
192192
"""
193193

194194
warnings.warn(
195-
"Will be removed in version v2.1.0, "
195+
"Will be removed in version v2.3.0, "
196196
"use stellar_sdk.server.strict_receive_paths",
197197
DeprecationWarning,
198198
)

stellar_sdk/transaction_builder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def append_path_payment_op(
318318
"""
319319

320320
warnings.warn(
321-
"Will be removed in version v2.1.0, "
321+
"Will be removed in version v2.3.0, "
322322
"use stellar_sdk.transaction_builder.append_path_payment_strict_receive_op",
323323
DeprecationWarning,
324324
)

0 commit comments

Comments
 (0)