diff --git a/CHANGELOG.md b/CHANGELOG.md index 215fd379..164b2b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] - TBD +None + +## [v0.4.0] - 2022-06-08 + ### Added - Significantly improved type hints @@ -201,7 +205,8 @@ are in a single HTTP session, handle pagination and respects conformance Initial release. -[Unreleased]: +[Unreleased]: +[v0.4.0]: [v0.3.5]: [v0.3.4]: [v0.3.3]: 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. 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"