From 356c4d18290d8c075fe6e8caefe2d5deeaafdd28 Mon Sep 17 00:00:00 2001 From: frank <98238480+soundsonacid@users.noreply.github.com> Date: Mon, 26 Feb 2024 08:56:45 -0600 Subject: [PATCH] frank/0.7.26 (#113) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 10 +++++++++- pyproject.toml | 2 +- src/driftpy/__init__.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 852e2be7..077f19c7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.25 +current_version = 0.7.26 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b1d7d11..ffe0e5f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -136,4 +136,12 @@ Bump `requests` and `typing-extensions` to ^ instead of pinned ## [0.7.24] - 2024-2-10 -Update `drift.json` IDL \ No newline at end of file +Update `drift.json` IDL + +## [0.7.25] - 2024-2-20 + +Fix bug in `decode_user()` where `remainder_base_amount` would decode incorrectly + +## [0.7.26] - 2024-2-26 + +Filter out logs with errors in `websocket_log_provider.py` to avoid `EventSubscriber` returning false positive events \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index cab9cb71..ab9246bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "driftpy" -version = "0.7.25" +version = "0.7.26" 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 bb174c47..93ab84ce 100644 --- a/src/driftpy/__init__.py +++ b/src/driftpy/__init__.py @@ -1 +1 @@ -__version__ = "0.7.25" +__version__ = "0.7.26"