Skip to content

Commit

Permalink
pre-release: 9.0.0-alpha2 (#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat authored Sep 16, 2023
1 parent 134a86b commit b444030
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release History
==============

### Version 9.0.0-alpha2

Released on September 16, 2023

#### Update
- feat: add support for Soroban Preview 11 ([#777](https://github.com/StellarCN/py-stellar-base/pull/777))

### Version 9.0.0-alpha1

Released on Aug 28, 2023
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ Installing

.. code-block:: text
pip install stellar-sdk==9.0.0a1
pip install stellar-sdk==9.0.0a2
If you need to use asynchronous, please use the following command to install the required dependencies.

.. code-block:: text
pip install stellar-sdk[aiohttp]==9.0.0a1
pip install stellar-sdk[aiohttp]==9.0.0a2
We follow `Semantic Versioning 2.0.0 <https://semver.org/>`_, and I strongly
recommend that you specify its major version number in the dependency
Expand Down
2 changes: 1 addition & 1 deletion examples/soroban_invoke_contract_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
to deploy the [Hello World contract](https://github.com/stellar/soroban-examples/tree/main/hello_world) first.
2. Install Stellar Python SDK from pypi:
pip install stellar-sdk==9.0.0a1
pip install stellar-sdk==9.0.0a2
3. Modify the necessary parameters in this script, then run it.
"""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stellar-sdk"
version = "9.0.0a1"
version = "9.0.0a2"
description = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon."
authors = [
"overcat <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "9.0.0a1"
__version__ = "9.0.0a2"
__author__ = "Eno, overcat"
__author_email__ = "[email protected], [email protected]"
__license__ = "Apache License 2.0"

0 comments on commit b444030

Please sign in to comment.