diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3109dd47..c9653648 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.33 +current_version = 0.7.34 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3749ddaf..6ffb90ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -180,4 +180,10 @@ Sort market indexes in `CachedDriftClientAccountSubscriber` before populating ca Merge PR #116: Update div_ceil to use integer division isntead of float division -Merge PR #117: Allows for the Jupiter V6 Swap API url to be configured \ No newline at end of file +Merge PR #117: Allows for the Jupiter V6 Swap API url to be configured + +## [0.7.34] - 2024-3-4 + +Refactor oracle switching & tests + +Fix bug in `MarketMap` where a subscription would not be properly established \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index edf27bcd..b566d3a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "driftpy" -version = "0.7.33" +version = "0.7.34" 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 257bbbb6..2b00e403 100644 --- a/src/driftpy/__init__.py +++ b/src/driftpy/__init__.py @@ -1 +1 @@ -__version__ = "0.7.33" +__version__ = "0.7.34"