Skip to content

Commit 105bc8c

Browse files
authoredSep 25, 2024··
[v0.0.3] Release (#11)
* [v0.0.3] Release * add changelog
1 parent e17b200 commit 105bc8c

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed
 

‎CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CDP Python SDK Changelog
2+
3+
## Unreleased
4+
5+
## [0.0.3] - 2024-09-25
6+
7+
### Added
8+
9+
- Initial release of the CDP Python SDK.

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ one asset into another.
1010
## Documentation
1111

1212
- [CDP API Documentation](https://docs.cdp.coinbase.com/platform-apis/docs/welcome)
13+
- [CDP SDK Python Documentation](https://coinbase.github.io/cdp-sdk-python/)
1314

1415
## Requirements
1516

@@ -21,9 +22,11 @@ Before using the SDK, ensure that you have the correct version of Python install
2122

2223
```bash
2324
python --version
25+
pip --version
2426
```
2527

2628
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/).
29+
For `pip`, refer to the [official pip documentation](https://pip.pypa.io/en/stable/installation/) for installation instructions.
2730

2831
## Installation
2932

‎cdp/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
project = 'CDP SDK'
1616
author = 'Coinbase Developer Platform'
17-
release = '0.0.2'
17+
release = '0.0.3'
1818

1919
# -- General configuration ---------------------------------------------------
2020
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cdp-sdk"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "CDP Python SDK"
55
readme = "README.md"
66
authors = [{name = "John Peterson", email = "john.peterson@coinbase.com"}]

0 commit comments

Comments
 (0)
Please sign in to comment.