From f9ced287ca29658fd763a8fe9c084dc65a20c6e7 Mon Sep 17 00:00:00 2001 From: overcat <4catcode@gmail.com> Date: Sat, 7 Nov 2020 00:10:11 +0800 Subject: [PATCH] pre-release: 3.0.0-beta2 --- CHANGELOG.md | 6 ++++++ docs/en/install.rst | 2 +- docs/zh_CN/install.rst | 2 +- stellar_sdk/__version__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e073dcb7..fbb16475 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Release History ============== +### Version 3.0.0-beta2 +Released on Nov 07, 2020 + +#### Update +* refactor: change the type of Operation.TYPE_CODE from `stellar_sdk.xdr.OperationType` to `str`. ([#401](https://github.com/StellarCN/py-stellar-base/pull/401)) + ### Version 3.0.0-beta1 Released on Nov 01, 2020 diff --git a/docs/en/install.rst b/docs/en/install.rst index 1004fef0..4244a7e0 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==3.0.0b1 + pipenv install stellar-sdk==3.0.0b2 If you're not using `pipenv `_, you should. Otherwise, you can install it via plain old `pip `_. More on installing Python diff --git a/docs/zh_CN/install.rst b/docs/zh_CN/install.rst index 37b42f4d..cf12a798 100644 --- a/docs/zh_CN/install.rst +++ b/docs/zh_CN/install.rst @@ -11,7 +11,7 @@ .. code-block:: text - pipenv install stellar-sdk==3.0.0b1 + pipenv install stellar-sdk==3.0.0b2 我们推荐你使用 `pipenv `_ 来安装这个模块。当然你也可以使用 `pip `_。 想要更多的了解如何安装依赖,请参阅 `Hitchhiker's Guide to Python diff --git a/stellar_sdk/__version__.py b/stellar_sdk/__version__.py index 8cd7eb20..20ec14c4 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__ = "3.0.0.beta1" +__version__ = "3.0.0.beta2" __author__ = "Eno, overcat" __author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com" __license__ = "Apache License 2.0"