Skip to content

Commit

Permalink
frank/0.7.20
Browse files Browse the repository at this point in the history
  • Loading branch information
soundsonacid authored Jan 31, 2024
1 parent 9ab1e01 commit 7e9abc6
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.19
current_version = 0.7.20
commit = True
tag = True
tag_name = {new_version}
Expand Down
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,28 @@ Minor tweaks to `UserMap`

## [0.7.19] - 2024-1-29

Add `FastTxSender`
Add `FastTxSender`

## [0.7.20] - 2024-1-30

Add `determine_maker_and_taker` and `find_crossing_resting_limit_orders` to `DLOB`

Fix bugs with lambda functions in `DLOB`

Add `get_settle_perp_ixs`, `get_fill_perp_order_ix` `get_revert_fill_ix`, `get_trigger_order_ix`, `force_cancel_orders`, and `get_force_cancel_orders_ix` to `DriftClient`

Fix bugs in `amm.py`

Fix bugs in `exchange_status.py`

Update funding calculations in `funding.py/calculate_all_estimated_funding_rate`

Increase RPC timeout in `PriorityFeeSubscriber.load()` from 5 to 20 seconds

Increase RPC timeout in `UserMap.sync()` from 10 to 30 seconds

Fix bug with python versions > 3.10 with mutable default struct fields in `types.py/OrderParams`

Several semantics changes throughout the codebase


4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "driftpy"
version = "0.7.19"
version = "0.7.20"
description = "A Python client for the Drift DEX"
authors = ["x19 <https://twitter.com/[email protected]>", "bigz <https://twitter.com/bigz_pubkey>"]
authors = ["x19 <https://twitter.com/[email protected]>", "bigz <https://twitter.com/bigz_pubkey>", "frank <https://twitter.com/soundsonacid>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/drift-labs/driftpy"
Expand Down
2 changes: 1 addition & 1 deletion src/driftpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.19"
__version__ = "0.7.20"

0 comments on commit 7e9abc6

Please sign in to comment.