diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7a38cc81..43ccb843 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.13 +current_version = 0.7.14 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index be350b53..2e0a5e89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,4 +44,8 @@ Update `drift.json` IDL for Drift Program Fix several major math bugs in `DriftUser.get_perp_liq_price()` and downstream math functions -Add default `Confirmed` commitment in `StandardTxSender` \ No newline at end of file +Add default `Confirmed` commitment in `StandardTxSender` + +## [0.7.14] - 2024-1-18 + +Add `PriorityFeeSubscriber` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index d8c4c2cd..af001463 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "driftpy" -version = "0.7.13" +version = "0.7.14" description = "A Python client for the Drift DEX" authors = ["x19 ", "bigz "] license = "MIT" diff --git a/src/driftpy/__init__.py b/src/driftpy/__init__.py index 85352b1d..6de11f48 100644 --- a/src/driftpy/__init__.py +++ b/src/driftpy/__init__.py @@ -1 +1 @@ -__version__ = "0.7.13" +__version__ = "0.7.14"