Skip to content

Release 2.3.0 #1024

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -68,7 +68,7 @@ The release on Github and PyPi performed from a release branch while the release
1. Announce the release through the following avenues:
* *Planet Internal:* #python and #devrel slack channels
* Changelog
1. Maintenace release only: Merge release tag into `main`
1. Maintenance release only: Merge release tag into `main`


### Local publishing
Expand Down
2 changes: 1 addition & 1 deletion planet/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.3dev'
__version__ = '2.4dev'