diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6d76b5b8..75956ea3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.46 +current_version = 0.7.47 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d01257..1ced666f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -230,4 +230,8 @@ Update `perp_market_constants.py` ## [0.7.46] - 2024-4-5 -Fix bug where `DriftClient.send_ixs` wasn't properly awaited \ No newline at end of file +Fix bug where `DriftClient.send_ixs` wasn't properly awaited + +## [0.7.47] - 2024-4-9 + +Add `UserStatsMap` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0aa88488..59544a31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "driftpy" -version = "0.7.46" +version = "0.7.47" description = "A Python client for the Drift DEX" authors = ["x19 ", "bigz ", "frank "] license = "MIT" diff --git a/src/driftpy/__init__.py b/src/driftpy/__init__.py index 41244394..ca894aa1 100644 --- a/src/driftpy/__init__.py +++ b/src/driftpy/__init__.py @@ -1 +1 @@ -__version__ = "0.7.46" +__version__ = "0.7.47"