From af3ee5d33cfddbbb977a3085ec460c58182cda6e Mon Sep 17 00:00:00 2001 From: overcat <4catcode@gmail.com> Date: Fri, 1 May 2020 23:29:47 +0800 Subject: [PATCH] release: 2.3.2 --- CHANGELOG.md | 5 +++++ README.rst | 2 +- docs/en/install.rst | 4 ++-- docs/zh_CN/install.rst | 4 ++-- stellar_sdk/__version__.py | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec26429e..c3efd57f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Release History =============== +### Version 2.3.2 +Released on May 01, 2020 + +- fix: typo in fetching previous page.([#312](https://github.com/StellarCN/py-stellar-base/issues/312)) + ### Version 2.3.1 Released on April 12, 2020 diff --git a/README.rst b/README.rst index 2a6b1a7b..31af6ac9 100644 --- a/README.rst +++ b/README.rst @@ -59,7 +59,7 @@ Install and update using `pipenv`_ or `pip`_: .. code-block:: text - pip install stellar-sdk==2.3.1 + pip install stellar-sdk==2.3.2 A Simple Example diff --git a/docs/en/install.rst b/docs/en/install.rst index 7cfd6cb7..728172a2 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.3.1 + pipenv install stellar-sdk==2.3.2 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.3.1 + git checkout 2.3.2 pip install . diff --git a/docs/zh_CN/install.rst b/docs/zh_CN/install.rst index bd00beeb..5572e577 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.3.1 + pipenv install stellar-sdk==2.3.2 我们推荐你使用 `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.3.1 + git checkout 2.3.2 pip install . diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index 6d1df1d7..abb09d84 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__ = "{}/issues".format(__url__) -__version__ = "2.3.1" +__version__ = "2.3.2" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"