diff --git a/CHANGELOG.md b/CHANGELOG.md index 915995e..9ff3e57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ ## Unreleased +### [0.11.0] - 2024-11-27 + ### Fixed - Fix bug in `Asset.from_model` where passed in asset ID was not used when creating a gwei or wei asset. ### Added - -- Add `FundOperation` and `FundQuote` classes to support wallet funding. +- Add support for funding wallets (Alpha feature release) + - Must reach out to CDP SDK Discord channel to be considered for this feature. ## [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"}]