From fc34015ab3c5778b4915e96660b90befbd8051ec Mon Sep 17 00:00:00 2001 From: Phil Varner Date: Wed, 8 Jun 2022 13:25:03 -0400 Subject: [PATCH 1/2] prepare for 0.4.0 release --- CHANGELOG.md | 4 ++-- pystac_client/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 215fd379..db39a39e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] - TBD +## [v0.4.0] - 2022-06-08 ### Added @@ -201,7 +201,7 @@ are in a single HTTP session, handle pagination and respects conformance Initial release. -[Unreleased]: +[v0.4.0]: [v0.3.5]: [v0.3.4]: [v0.3.3]: diff --git a/pystac_client/version.py b/pystac_client/version.py index a8d4557d..6a9beea8 100644 --- a/pystac_client/version.py +++ b/pystac_client/version.py @@ -1 +1 @@ -__version__ = "0.3.5" +__version__ = "0.4.0" From 76198d54bd8b129fb34e9667dfd16df81745fba5 Mon Sep 17 00:00:00 2001 From: Phil Varner Date: Wed, 8 Jun 2022 13:36:28 -0400 Subject: [PATCH 2/2] update changelog for v0.4.0 --- CHANGELOG.md | 5 +++++ RELEASING.md | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db39a39e..164b2b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [Unreleased] - TBD + +None + ## [v0.4.0] - 2022-06-08 ### Added @@ -201,6 +205,7 @@ are in a single HTTP session, handle pagination and respects conformance Initial release. +[Unreleased]: [v0.4.0]: [v0.3.5]: [v0.3.4]: diff --git a/RELEASING.md b/RELEASING.md index 47c7904f..d90496b8 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -7,9 +7,8 @@ 4. Update [CHANGELOG.md](CHANGELOG.md). 1. Add a new header under "Unreleased" with the new version and the date, e.g. `## [vX.Y.Z] - YYYY-MM-DD`. 2. Audit the changelog section to ensure all changes are captured. - 3. Add a new link reference at the bottom of the changelog with the new version. + 3. Add a link reference for the new version after the Unreleased link reference at the bottom of the file. Follow the format from the previous version links. - 4. Update the "Unreleased" link to reference your new version. 5. (optional) Build the package locally and inspect its contents: `pip install build && python -m build` 6. Open a pull request for your `release/vX.Y.Z` branch against the appropriate branch (either `main` or a version branch, e.g. `v0.3`). Include a section in the pull request description with the CHANGELOG contents for this version.