Skip to content

Commit eebe6ec

Browse files
committed
release: 0.7.0 (#77)
1 parent 1fb51b9 commit eebe6ec

5 files changed

Lines changed: 26 additions & 21 deletions

File tree

CHANGELOG.rst

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,67 +4,72 @@ Change Log
44

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

7+
0.7.0
8+
-----
9+
* feat: add support for Horizon v23.0.0.
10+
* feat: add `destination_muxed_id` to `AssetContractBalanceChange`. (`#76 <https://github.com/StellarCN/stellar-model/pull/76/>`_)
11+
712
0.6.0
8-
----------------------------
13+
-----
914
* feat: add support for Horizon v22.0.0. (`#63 <https://github.com/StellarCN/stellar-model/pull/63/>`_)
1015

1116
0.5.4
12-
----------------------------
17+
-----
1318
* feat: add support for Horizon v2.27.0. (`#59 <https://github.com/StellarCN/stellar-model/pull/59/>`_)
1419

1520
0.5.3
16-
----------------------------
21+
-----
1722
* deps: bump pydantic to v2. (`#48 <https://github.com/StellarCN/stellar-model/pull/48/>`_)
1823
* fix: bug fixes.
1924

2025
0.5.2
21-
----------------------------
26+
-----
2227
* fix: fix model for `LiquidityPoolRemovedEffect`. (`#43 <https://github.com/StellarCN/stellar-model/pull/43/>`_)
2328

2429
0.5.1
25-
----------------------------
30+
-----
2631
* feat: add `EffectResponse` to parse single effect. (`#36 <https://github.com/StellarCN/stellar-model/pull/36/>`_)
2732

2833
0.5.0
29-
----------------------------
34+
-----
3035
* feat: add support for Horizon `v2.17.0 <https://github.com/stellar/go/releases/tag/horizon-v2.17.0>`_. (`#31 <https://github.com/StellarCN/stellar-model/pull/31/>`_)
3136

3237
0.4.1b0
33-
----------------------------
38+
-------
3439
* feat: add support for order book endpoint.
3540

3641
0.4.0b0
37-
----------------------------
42+
-------
3843
* feat: add support for horizon-v2.13.0
3944

4045
0.3.1b0
41-
----------------------------
46+
-------
4247
* fix: ClaimPredicate.rel_before, Optional[datetime] -> Optional[int]
4348

4449
0.3.0b0
45-
----------------------------
50+
-------
4651
This release contains breaking updates.
4752

4853
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>`_)
4954

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

5257
0.2.2b0
53-
------------------------
58+
-------
5459
* fix: make `ClaimableBalance.last_modified_time` and `Offer.last_modified_time` optional.
5560

5661
0.2.1b0
57-
------------------------
62+
-------
5863
* fix: make `Account.last_modified_time` optional. (`#19 <https://github.com/StellarCN/stellar-model/pull/19/>`_)
5964

6065
0.2.0b0
61-
------------------------
66+
-------
6267
* feat: add support for muxed account.
6368

6469
0.1.0b1
65-
------------------------
70+
-------
6671
* Bug fix.
6772

6873
0.1.0b0
69-
------------------------
74+
-------
7075
* First beta release.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please check the list `here <https://github.com/StellarCN/stellar-model/issues/2
2929

3030
.. code-block:: text
3131
32-
pip install stellar-model==0.6.0
32+
pip install stellar-model==0.7.0
3333
3434
Example
3535
=======

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "stellar-model"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "Parse the raw Stellar data into Python models."
55
authors = ["overcat <4catcode@gmail.com>"]
66
readme = "README.rst"

stellar_model/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.7.0"
22
__url__ = "https://github.com/StellarCN/stellar-model"
33
__issues__ = f"{__url__}/issues"
44

0 commit comments

Comments
 (0)