diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eaebc6e..5ea98561 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Release History ============== +### Version 2.6.4 + +Released on Aug 14, 2020 + +#### Added +* feat: add support for parsing Stellar URI (SEP-0007). ([#360](https://github.com/StellarCN/py-stellar-base/pull/360)) + ### Version 2.6.3 Released on Aug 09, 2020 diff --git a/README.rst b/README.rst index 8cd93dcd..b329daf2 100644 --- a/README.rst +++ b/README.rst @@ -33,9 +33,9 @@ Stellar Python SDK :alt: Stellar Protocol :target: https://www.stellar.org/developers/guides/concepts/scp.html -.. image:: https://img.shields.io/badge/Horizon%20Version-1.6.0-blue?style=flat-square +.. image:: https://img.shields.io/badge/Horizon%20Version-1.7.0-blue?style=flat-square :alt: Horizon Version - :target: https://github.com/stellar/go/releases/tag/horizon-v1.6.0 + :target: https://github.com/stellar/go/releases/tag/horizon-v1.7.0 py-stellar-sdk is a Python library for communicating with a `Stellar Horizon server`_. It is used for building Stellar apps on Python. It supports **Python 3.6+** as @@ -57,7 +57,7 @@ Install and update using `pipenv`_ or `pip`_: .. code-block:: text - pip install stellar-sdk==2.6.3 + pip install stellar-sdk==2.6.4 A Simple Example diff --git a/docs/en/install.rst b/docs/en/install.rst index 0f9b213c..b67b09e9 100644 --- a/docs/en/install.rst +++ b/docs/en/install.rst @@ -11,7 +11,7 @@ To install py-stellar-sdk, use pipenv to install the module: .. code-block:: text - pipenv install stellar-sdk==2.6.3 + pipenv install stellar-sdk==2.6.4 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 2.6.3 + git checkout 2.6.4 pip install . diff --git a/docs/zh_CN/install.rst b/docs/zh_CN/install.rst index 78e873ea..031b4bfa 100644 --- a/docs/zh_CN/install.rst +++ b/docs/zh_CN/install.rst @@ -11,7 +11,7 @@ .. code-block:: text - pipenv install stellar-sdk==2.6.3 + pipenv install stellar-sdk==2.6.4 我们推荐你使用 `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 2.6.3 + git checkout 2.6.4 pip install . diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index 05642d3e..74cb324d 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__ = "2.6.3" +__version__ = "2.6.4" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"