diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bdfe5ee2..b4129fd3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.18 +current_version = 0.7.19 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index c66d7954..2ff05ab5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,6 +66,10 @@ Add `find_nodes_to_trigger()` to `dlob.py` Add `get_slot()` to `user_map.py` -## [0.7.18] - 2024-1025 +## [0.7.18] - 2024-1-25 -Minor tweaks to `UserMap` \ No newline at end of file +Minor tweaks to `UserMap` + +## [0.7.19] - 2024-1-29 + +Add `FastTxSender` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 85938769..60b8e162 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "driftpy" -version = "0.7.18" +version = "0.7.19" 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 dac32a94..06643bf9 100644 --- a/src/driftpy/__init__.py +++ b/src/driftpy/__init__.py @@ -1 +1 @@ -__version__ = "0.7.18" +__version__ = "0.7.19"