Skip to content

Commit 2edfd30

Browse files
committed
v2.0.0-alpha2 release
1 parent 6af1f9b commit 2edfd30

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ py-stellar-sdk
2929
:alt: PyPI - Implementation
3030
:target: https://pypi.python.org/pypi/stellar-sdk
3131

32-
**This is a alpha release, please do not use it in production environment, feedback is welcome :-)**
32+
.. warning::
33+
This is a alpha release, please do not use it in production
34+
environment, feedback is welcome :-)
3335

3436
py-stellar-sdk is a Python library for communicating with
3537
a `Stellar Horizon server`_. It is used for building Stellar apps on Python. It supports **Python 3.6+** as
@@ -51,7 +53,7 @@ Install and update using `pipenv`_ or `pip`_:
5153

5254
.. code-block:: text
5355
54-
pip install stellar-sdk==2.0.0a1
56+
pip install stellar-sdk==2.0.0a2
5557
5658
5759
A Simple Example

docs/index.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ py-stellar-sdk
3636
:alt: PyPI - Implementation
3737
:target: https://pypi.python.org/pypi/stellar-sdk
3838

39-
**This is a alpha release, please do not use it in production environment, feedback is welcome :-)**
39+
.. warning::
40+
This is a alpha release, please do not use it in production
41+
environment, feedback is welcome :-)
42+
4043

4144
py-stellar-sdk is a Python library for communicating with
4245
a `Stellar Horizon server`_. It is used for building Stellar apps on Python. It supports **Python 3.6+** as

docs/install.rst

Lines changed: 2 additions & 2 deletions
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.0.0a1
14+
pipenv install stellar-sdk==2.0.0a2
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.0.0-alpha1
32+
git checkout 2.0.0-alpha2
3333
pip install .

stellar_sdk/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
__title__ = "stellar-sdk"
1111
__description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon."
12-
__url__ = "https://github.com/overcat/py-stellar-sdk"
12+
__url__ = "https://github.com/StellarCN/py-stellar-base"
1313
__issues__ = "{}/issues".format(__url__)
14-
__version__ = "2.0.0-alpha1"
14+
__version__ = "2.0.0-alpha2"
1515
__author__ = "Eno, overcat"
1616
1717
__license__ = "Apache License 2.0"

0 commit comments

Comments
 (0)