From 59cee07f57fa62937b1e8bd81818aed5ec1afbf9 Mon Sep 17 00:00:00 2001 From: Christopher Gerber Date: Tue, 10 Dec 2024 12:56:53 -0800 Subject: [PATCH] 0.12.1 --- CHANGELOG.md | 13 +++++++++++-- cdp/__version__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd77c75..b3e9c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,20 +2,29 @@ ## Unreleased +### [0.12.1] - 2024-12-10 + +### Added + +- Wallet address contract invocation input validation for payable contracts. + ### [0.12.0] - 2024-12-06 ### Added + - Use Poetry as the dependency manager - Relax dependency version constraints ### [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. + - 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. ### Fixed + - Fix bug in `Asset.from_model` where passed in asset ID was not used when creating a gwei or wei asset. ## [0.10.4] - 2024-11-25 @@ -57,7 +66,7 @@ ### Changed - Make faucet transactions async i.e. using `faucet_tx.wait()` to wait for the transaction to be confirmed. - - This will make the SDK more consistent and make faucet transactions more reliable. + - This will make the SDK more consistent and make faucet transactions more reliable. ## [0.0.9] - 2024-10-29 diff --git a/cdp/__version__.py b/cdp/__version__.py index ea370a8..def467e 100644 --- a/cdp/__version__.py +++ b/cdp/__version__.py @@ -1 +1 @@ -__version__ = "0.12.0" +__version__ = "0.12.1" diff --git a/docs/conf.py b/docs/conf.py index 7810aa2..c74417a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ project = 'CDP SDK' author = 'Coinbase Developer Platform' -release = '0.12.0' +release = '0.12.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 920d26e..0867de4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cdp-sdk" -version = "0.12.0" +version = "0.12.1" description = "CDP Python SDK" authors = ["John Peterson "] license = "LICENSE.md" @@ -66,4 +66,4 @@ testpaths = [ ] [tool.coverage.run] -omit = ["cdp/client/*"] \ No newline at end of file +omit = ["cdp/client/*"]