From 1afaa7e393ee04f8449e418c0b117a74c6211bca Mon Sep 17 00:00:00 2001 From: Rohan Agarwal Date: Fri, 28 Feb 2025 14:26:16 -0700 Subject: [PATCH] Fix --- CHANGELOG.md | 5 +++++ cdp/__version__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 350d843..fcb03d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [0.21.0] - 2025-02-28 + +### Added +- Ability to check UserOperation status using a string comparison. + ## [0.20.0] - 2025-02-25 ### Added diff --git a/cdp/__version__.py b/cdp/__version__.py index 5f4bb0b..6a726d8 100644 --- a/cdp/__version__.py +++ b/cdp/__version__.py @@ -1 +1 @@ -__version__ = "0.20.0" +__version__ = "0.21.0" diff --git a/docs/conf.py b/docs/conf.py index 184f31c..c6df432 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ project = 'CDP SDK' author = 'Coinbase Developer Platform' -release = '0.20.0' +release = '0.21.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index a37afce..3f1c787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cdp-sdk" -version = "0.20.0" +version = "0.21.0" description = "CDP Python SDK" authors = ["John Peterson "] license = "LICENSE.md"