Skip to content

Commit

Permalink
pre-release: 0.3.1b0
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Jan 11, 2022
1 parent 797fc8f commit 7b798ec
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
16 changes: 10 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,34 @@ Change Log

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

0.3.0b0 (Horizon v2.9.0~rc1)
0.3.1b0
----------------------------
* fix: ClaimPredicate.rel_before, Optional[datetime] -> Optional[int]

0.3.0b0
----------------------------
This release contains breaking updates.

You can check the `release log of horizon-v2.9.0-rc1 <https://github.com/stellar/go/releases/tag/horizon-v2.9.0rc1>`_ and `Horizon Liquidity Pool API Docs <https://docs.google.com/document/d/1pXL8kr1a2vfYSap9T67R-g72B_WWbaE1YsLMa04OgoU/edit#heading=h.bexstdt2tlbj>`_. (`Download Horizon Liquidity Pool API.pdf <https://github.com/StellarCN/stellar-model/files/7315193/Horizon.Liquidity.Pool.API.pdf>`_)

* feat: add support for horizon-v2.9.0~rc1 (`#21 <https://github.com/StellarCN/stellar-model/pull/21/>`_)

0.2.2b0 (Horizon v2.8.3)
0.2.2b0
------------------------
* fix: make `ClaimableBalance.last_modified_time` and `Offer.last_modified_time` optional.

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

0.2.0b0 (Horizon v2.5.2)
0.2.0b0
------------------------
* feat: add support for muxed account.

0.1.0b1 (Horizon v2.2.0)
0.1.0b1
------------------------
* Bug fix.

0.1.0b0 (Horizon v2.2.0)
0.1.0b0
------------------------
* First beta release.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Please check the list `here <https://github.com/StellarCN/stellar-model/issues/2

.. code-block:: text
pip install stellar-model==0.3.0b0
pip install stellar-model==0.3.1b0
Example
=======
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
stellar-model==0.3.0b0
stellar-model==0.3.1b0
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.3.0b0"
version = "0.3.1b0"
description = "Parse the raw Stellar data into Python models."
authors = ["overcat <[email protected]>"]
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.3.0b0"
__supported_horizon_version__ = "2.8.3"
__version__ = "0.3.1b0"
__supported_horizon_version__ = "2.9.0"
__url__ = "https://github.com/StellarCN/stellar-model"
__issues__ = f"{__url__}/issues"

Expand Down

0 comments on commit 7b798ec

Please sign in to comment.