diff --git a/CHANGES.txt b/CHANGES.txt index 96dfa1d5..382b877b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,12 @@ +2.3.0 (2024-02-09) + +Added: +- Support Subscriptions API `PATCH` requests (#1020). +- Add path_prefix to Subscriptions API request builder (#1018). + +Fixed: +- Fixed datetime serialization bug (#1016). + 2.2.0 (2023-10-16) Added: diff --git a/RELEASE.md b/RELEASE.md index e6a55d18..3044811c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -49,7 +49,7 @@ The release on Github and PyPi performed from a release branch while the release 1. Starting from the Source Branch, create a release branch named `release-{Release Version}` 1. Make the following changes for the release: * Update `CHANGES.txt`, adhering to [Keep a Changelog](https://keepachangelog.com/) - * Include added, changed, depricated or removed features and bug fixes. + * Include added, changed, deprecated or removed features and bug fixes. A list of merged PRs and their titles since the last release can be obtained with `git log $PREVIOUS_RELEASE_TAG..HEAD | awk '/Merge pull request/{print;getline;getline;print}'`. * Sort according to importance * Update `planet/__version__.py` to Release Version diff --git a/planet/__version__.py b/planet/__version__.py index 52ab43f0..93bbb90e 100644 --- a/planet/__version__.py +++ b/planet/__version__.py @@ -1 +1 @@ -__version__ = '2.3dev' +__version__ = '2.3'