Skip to content

Commit

Permalink
release: 9.0.0 (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Dec 9, 2023
1 parent 1774480 commit 7b2b069
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,15 @@ Release History
==============

### Pending

### Version 9.0.0

Released on Dec 9, 2023

#### Update
- fix: fix the issue of incorrect handling of special horizon links on the Windows platform. ([#825](https://github.com/StellarCN/py-stellar-base/pull/825))
- chore: add support for Python 3.12. ([#799](https://github.com/StellarCN/py-stellar-base/pull/799))
- chore: `SorobanServer` uses testnet instead of futurenet by default ([#831](https://github.com/StellarCN/py-stellar-base/pull/831))

### Version 9.0.0-beta1

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -56,13 +56,13 @@ Installing

.. code-block:: text
pip install --upgrade --pre stellar-sdk
pip install --upgrade stellar-sdk
If you need to use asynchronous, please use the following command to install the required dependencies.

.. code-block:: text
pip install --upgrade --pre stellar-sdk[aiohttp]
pip install --upgrade stellar-sdk[aiohttp]
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
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 --upgrade --pre stellar-sdk
pip install --upgrade stellar-sdk
3. Modify the necessary parameters in this script, then run it.
"""
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stellar-sdk"
version = "9.0.0b1"
version = "9.0.0"
description = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server."
authors = [
"overcat <4catcode@gmail.com>",
Expand All @@ -24,11 +24,13 @@ keywords = [
"horizon",
"soroban",
"sdex",
"trading"
"trading",
"soroban",
"soroban-rpc"
]
license = "Apache License 2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
Expand Down
2 changes: 1 addition & 1 deletion stellar_sdk/__version__.py
Expand Up @@ -11,7 +11,7 @@
__description__ = "The Python Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC server."
__url__ = "https://github.com/StellarCN/py-stellar-base"
__issues__ = f"{__url__}/issues"
__version__ = "9.0.0b1"
__version__ = "9.0.0"
__author__ = "Eno, overcat"
__author_email__ = "appweb.cn@gmail.com, 4catcode@gmail.com"
__license__ = "Apache License 2.0"

0 comments on commit 7b2b069

Please sign in to comment.