diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8b4d99d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# CDP Python SDK Changelog + +## Unreleased + +## [0.0.3] - 2024-09-25 + +### Added + +- Initial release of the CDP Python SDK. diff --git a/README.md b/README.md index 57a6d95..ca22e3d 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ one asset into another. ## Documentation - [CDP API Documentation](https://docs.cdp.coinbase.com/platform-apis/docs/welcome) +- [CDP SDK Python Documentation](https://coinbase.github.io/cdp-sdk-python/) ## Requirements @@ -21,9 +22,11 @@ Before using the SDK, ensure that you have the correct version of Python install ```bash python --version +pip --version ``` If you need to upgrade your Python version, you can download and install the latest version of Python from the [official Python website](https://www.python.org/downloads/). +For `pip`, refer to the [official pip documentation](https://pip.pypa.io/en/stable/installation/) for installation instructions. ## Installation diff --git a/cdp/__version__.py b/cdp/__version__.py index 3b93d0b..27fdca4 100644 --- a/cdp/__version__.py +++ b/cdp/__version__.py @@ -1 +1 @@ -__version__ = "0.0.2" +__version__ = "0.0.3" diff --git a/docs/conf.py b/docs/conf.py index 799f6dc..e9c96db 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,7 @@ project = 'CDP SDK' author = 'Coinbase Developer Platform' -release = '0.0.2' +release = '0.0.3' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 3d16c0d..782d916 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cdp-sdk" -version = "0.0.2" +version = "0.0.3" description = "CDP Python SDK" readme = "README.md" authors = [{name = "John Peterson", email = "john.peterson@coinbase.com"}]