From d569b15633cda9c2b72420621e1488719b18bc0c Mon Sep 17 00:00:00 2001 From: Alexander Stone Date: Wed, 27 Nov 2024 12:51:07 -0800 Subject: [PATCH] chore: Prep v0.11.0 release (#51) --- CHANGELOG.md | 9 ++++++--- cdp/__version__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 915995e..b56a304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,15 @@ ## Unreleased -### Fixed -- Fix bug in `Asset.from_model` where passed in asset ID was not used when creating a gwei or wei asset. +### [0.11.0] - 2024-11-27 ### Added +- Add support for funding wallets (Alpha feature release) + - Must reach out to CDP SDK Discord channel to be considered for this feature. +- Added create and update feature for `SmartContractEventActivity` webhook and its related event type filter. -- Add `FundOperation` and `FundQuote` classes to support wallet funding. +### Fixed +- Fix bug in `Asset.from_model` where passed in asset ID was not used when creating a gwei or wei asset. ## [0.10.3] - 2024-11-07 diff --git a/cdp/__version__.py b/cdp/__version__.py index b2385cb..ae6db5f 100644 --- a/cdp/__version__.py +++ b/cdp/__version__.py @@ -1 +1 @@ -__version__ = "0.10.3" +__version__ = "0.11.0" diff --git a/docs/conf.py b/docs/conf.py index 5dc3ee9..fe1550f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ project = 'CDP SDK' author = 'Coinbase Developer Platform' -release = '0.10.3' +release = '0.11.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 251d4fc..d681820 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cdp-sdk" -version = "0.10.3" +version = "0.11.0" description = "CDP Python SDK" readme = "README.md" authors = [{name = "John Peterson", email = "john.peterson@coinbase.com"}]