diff --git a/CHANGELOG.md b/CHANGELOG.md index fb62c5ae..29a33403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Release History ============== +### Version 5.0.1 +Released on October 06, 2021 + +#### Update +* Upgrade outdated third-party dependencies. + ### Version 5.0.0 Released on October 06, 2021 diff --git a/README.rst b/README.rst index 8fce4543..7f4b77cb 100644 --- a/README.rst +++ b/README.rst @@ -57,7 +57,7 @@ Install and update using `pipenv`_ or `pip`_: .. code-block:: text - pip install stellar-sdk==5.0.0 + pip install stellar-sdk==5.0.1 A Simple Example diff --git a/docs/en/install.rst b/docs/en/install.rst index 99c4b6f8..23993591 100644 --- a/docs/en/install.rst +++ b/docs/en/install.rst @@ -11,7 +11,7 @@ To install py-stellar-base, use pipenv to install the module: .. code-block:: text - pipenv install stellar-sdk==5.0.0 + pipenv install stellar-sdk==5.0.1 If you're not using `pipenv `_, you should. Otherwise, you can install it via plain old `pip `_. More on installing Python @@ -29,5 +29,5 @@ You can clone `the repository `_ d git clone https://github.com/StellarCN/py-stellar-base.git cd py-stellar-base - git checkout 5.0.0 + git checkout 5.0.1 pip install . diff --git a/docs/zh_CN/install.rst b/docs/zh_CN/install.rst index 045300bb..cc7d276f 100644 --- a/docs/zh_CN/install.rst +++ b/docs/zh_CN/install.rst @@ -11,7 +11,7 @@ .. code-block:: text - pipenv install stellar-sdk==5.0.0 + pipenv install stellar-sdk==5.0.1 我们推荐你使用 `pipenv `_ 来安装这个模块。当然你也可以使用 `pip `_。 想要更多的了解如何安装依赖,请参阅 `Hitchhiker's Guide to Python @@ -28,5 +28,5 @@ git clone https://github.com/StellarCN/py-stellar-base.git cd py-stellar-base - git checkout 5.0.0 + git checkout 5.0.1 pip install . diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index 8ce3ede7..59dc537d 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." __url__ = "https://github.com/StellarCN/py-stellar-base" __issues__ = f"{__url__}/issues" -__version__ = "5.0.0" +__version__ = "5.0.1" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"