Skip to content

Commit

Permalink
release: 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Apr 12, 2020
1 parent 4a5c597 commit 519ccbb
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
===============

### Version 2.3.1
Released on April 12, 2020

- Update dependencies.

### Version 2.3.0
Released on March 31, 2020

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Stellar Python SDK
==================

.. image:: https://img.shields.io/github/workflow/status/StellarCN/py-stellar-base/GitHub%20Action/dev?style=flat-square&maxAge=1800
.. image:: https://img.shields.io/github/workflow/status/StellarCN/py-stellar-base/GitHub%20Action/master?style=flat-square&maxAge=1800
:alt: GitHub Action
:target: https://github.com/StellarCN/py-stellar-base/actions

Expand Down Expand Up @@ -59,7 +59,7 @@ Install and update using `pipenv`_ or `pip`_:

.. code-block:: text
pip install stellar-sdk==2.3.0
pip install stellar-sdk==2.3.1
A Simple Example
Expand Down
4 changes: 2 additions & 2 deletions docs/en/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To install py-stellar-sdk, use pipenv to install the module:

.. code-block:: text
pipenv install stellar-sdk==2.3.0
pipenv install stellar-sdk==2.3.1
If you're not using `pipenv <https://docs.pipenv.org/>`_, you should.
Otherwise, you can install it via plain old `pip <https://pip.pypa.io/en/stable/quickstart/>`_. More on installing Python
Expand All @@ -29,5 +29,5 @@ You can clone `the repository <https://github.com/StellarCN/py-stellar-base>`_ d
git clone https://github.com/StellarCN/py-stellar-base.git
cd py-stellar-base
git checkout 2.3.0
git checkout 2.3.1
pip install .
4 changes: 2 additions & 2 deletions docs/zh_CN/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

.. code-block:: text
pipenv install stellar-sdk==2.3.0
pipenv install stellar-sdk==2.3.1
我们推荐你使用 `pipenv <https://docs.pipenv.org/>`_ 来安装这个模块。当然你也可以使用 `pip <https://pip.pypa.io/en/stable/quickstart/>`_。
想要更多的了解如何安装依赖,请参阅 `Hitchhiker's Guide to Python
Expand All @@ -28,5 +28,5 @@
git clone https://github.com/StellarCN/py-stellar-base.git
cd py-stellar-base
git checkout 2.3.0
git checkout 2.3.1
pip install .
2 changes: 1 addition & 1 deletion stellar_sdk/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "{}/issues".format(__url__)
__version__ = "2.3.0"
__version__ = "2.3.1"
__author__ = "Eno, overcat"
__author_email__ = "[email protected], [email protected]"
__license__ = "Apache License 2.0"
2 changes: 1 addition & 1 deletion stellar_sdk/call_builder/paths_call_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(
) -> None:

warnings.warn(
"Will be removed in version v2.3.0, "
"Will be removed in version v3.0.0, "
"use stellar_sdk.call_builder.StrictReceivePathsCallBuilder",
DeprecationWarning,
)
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/operation/path_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(
source: str = None,
) -> None:
warnings.warn(
"Will be removed in version v2.3.0, "
"Will be removed in version v3.0.0, "
"use stellar_sdk.operation.PathPaymentStrictReceive",
DeprecationWarning,
)
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/sep/stellar_web_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def verify_challenge_transaction_signed_by_client(
validation fails, the exception will be thrown.
"""
warnings.warn(
"Will be removed in version v2.3.0, "
"Will be removed in version v3.0.0, "
"use stellar_sdk.sep.test_stellar_web_authentication.verify_challenge_transaction_signed_by_client_master_key",
DeprecationWarning,
) # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def paths(
"""

warnings.warn(
"Will be removed in version v2.3.0, "
"Will be removed in version v3.0.0, "
"use stellar_sdk.server.strict_receive_paths",
DeprecationWarning,
)
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/transaction_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def append_path_payment_op(
"""

warnings.warn(
"Will be removed in version v2.3.0, "
"Will be removed in version v3.0.0, "
"use stellar_sdk.transaction_builder.append_path_payment_strict_receive_op",
DeprecationWarning,
)
Expand Down

0 comments on commit 519ccbb

Please sign in to comment.