Skip to content

Commit 2794e6a

Browse files
committed
release: 2.1.4
1 parent e7719c5 commit 2794e6a

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

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

4+
### Version 2.1.4
5+
Released on February 12, 2020
6+
7+
* fix: orderbook async streams (#265)
8+
49
### Version 2.1.3
510
Released on February 03, 2020
611

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.1.3
54+
pip install stellar-sdk==2.1.4
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.1.3
14+
pipenv install stellar-sdk==2.1.4
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.1.3
32+
git checkout 2.1.4
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.1.3
14+
pipenv install stellar-sdk==2.1.4
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.1.3
31+
git checkout 2.1.4
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.1.3"
14+
__version__ = "2.1.4"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

0 commit comments

Comments
 (0)