Skip to content

Commit 5598fb6

Browse files
committed
release: 2.2.2
1 parent da7d20e commit 5598fb6

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release History
22
===============
33

4+
### Version 2.2.2
5+
Released on March 08, 2020
6+
7+
* fix: parameters checking rule in TimeBounds. ([561f3e7](https://github.com/StellarCN/py-stellar-base/commit/561f3e7a3c407783eb8ecbed4134978fd88497f4))
8+
* fix: HashMemo and ReturnHashMemo should be fixed in length (32 bytes). ([22cd179](https://github.com/StellarCN/py-stellar-base/commit/22cd1794ea7c35b059549588893c410b6fd297d8))
9+
410
### Version 2.2.1
511
Released on February 12, 2020
612

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Install and update using `pipenv`_ or `pip`_:
5151

5252
.. code-block:: text
5353
54-
pip install stellar-sdk==2.2.1
54+
pip install stellar-sdk==2.2.2
5555
5656
5757
A Simple Example

docs/en/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To install py-stellar-sdk, use pipenv to install the module:
1111

1212
.. code-block:: text
1313
14-
pipenv install stellar-sdk==2.2.1
14+
pipenv install stellar-sdk==2.2.2
1515
1616
If you're not using `pipenv <https://docs.pipenv.org/>`_, you should.
1717
Otherwise, you can install it via plain old `pip <https://pip.pypa.io/en/stable/quickstart/>`_. More on installing Python
@@ -29,5 +29,5 @@ You can clone `the repository <https://github.com/StellarCN/py-stellar-base>`_ d
2929
3030
git clone https://github.com/StellarCN/py-stellar-base.git
3131
cd py-stellar-base
32-
git checkout 2.2.1
32+
git checkout 2.2.2
3333
pip install .

docs/zh_CN/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
.. code-block:: text
1313
14-
pipenv install stellar-sdk==2.2.1
14+
pipenv install stellar-sdk==2.2.2
1515
1616
我们推荐你使用 `pipenv <https://docs.pipenv.org/>`_ 来安装这个模块。当然你也可以使用 `pip <https://pip.pypa.io/en/stable/quickstart/>`_。
1717
想要更多的了解如何安装依赖,请参阅 `Hitchhiker's Guide to Python
@@ -28,5 +28,5 @@
2828
2929
git clone https://github.com/StellarCN/py-stellar-base.git
3030
cd py-stellar-base
31-
git checkout 2.2.1
31+
git checkout 2.2.2
3232
pip install .

stellar_sdk/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon."
1212
__url__ = "https://github.com/StellarCN/py-stellar-base"
1313
__issues__ = "{}/issues".format(__url__)
14-
__version__ = "2.2.1"
14+
__version__ = "2.2.2"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

0 commit comments

Comments
 (0)