Skip to content

Commit

Permalink
pre-release: 0.2.1b0
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Oct 9, 2021
1 parent 636f37c commit 3b20cdd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Change Log

This document records all notable changes to `stellar-model <https://github.com/StellarCN/stellar-model/>`_.

0.2.1b0 (Horizon v2.8.3)
------------------------
* fix: make `Account.last_modified_time` optional. (`#19 <https://github.com/StellarCN/stellar-model/pull/19/>`_)

0.2.0b0 (Horizon v2.5.2)
------------------------
* feat: add support for muxed account.
Expand Down
9 changes: 6 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ stellar-model
:alt: PyPI
:target: https://pypi.python.org/pypi/stellar-model

.. image:: https://img.shields.io/badge/Supported%20Horizon%20Version-2.2.0-blue?style=flat
.. image:: https://img.shields.io/badge/Supported%20Horizon%20Version-2.8.3-blue?style=flat
:alt: Supported Horizon Version
:target: https://github.com/stellar/go/releases/tag/horizon-v2.2.0
:target: https://github.com/stellar/go/releases/tag/horizon-v2.8.3

.. image:: https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue?style=flat
:alt: Python - Version
Expand All @@ -32,9 +32,12 @@ development experience in the editor with things like code completion, type hint
Installing
==========

You need to choose a suitable stellar-model version according to the Horizon version number you are using.
Please check the list `here <https://github.com/StellarCN/stellar-model/issues/20/>`_.

.. code-block:: text
pip install stellar-model==0.2.0b0
pip install stellar-model==0.2.1b0
Example
=======
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-model"
version = "0.2.0b0"
version = "0.2.1b0"
description = "Parse the raw Stellar data into Python models."
authors = ["overcat <4catcode@gmail.com>"]
readme = "README.rst"
Expand Down
4 changes: 2 additions & 2 deletions stellar_model/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = "0.2.0b0"
__supported_horizon_version__ = "2.2.0"
__version__ = "0.2.1b0"
__supported_horizon_version__ = "2.8.3"
__url__ = "https://github.com/StellarCN/stellar-model"
__issues__ = f"{__url__}/issues"

Expand Down

0 comments on commit 3b20cdd

Please sign in to comment.