From b1ecd45f64cd68b11ee1ed211bc3b0c8833b8688 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 23 May 2024 08:47:54 -0600 Subject: [PATCH] release: v0.8.1 (#692) --- .pre-commit-config.yaml | 2 +- CHANGELOG.md | 7 +++++-- docs/index.rst | 2 ++ pystac_client/version.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 242e6a9c..5316e547 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.4.4" + rev: "v0.4.5" hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/CHANGELOG.md b/CHANGELOG.md index 414f8e64..e64e0e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v0.8.1] - 2024-05-23 + ### Fixed -- Use singular `include` and `exclude` Field extension key names to align with the extension documentation. [#690](https://github.com/stac-utils/pystac-client/issues/690) +- Use singular `include` and `exclude` Field extension key names [#690](https://github.com/stac-utils/pystac-client/pull/690) ## [v0.8.0] - 2024-05-17 @@ -370,7 +372,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release. -[Unreleased]: https://github.com/stac-utils/pystac-client/compare/v0.8.0...main +[Unreleased]: https://github.com/stac-utils/pystac-client/compare/v0.8.1...main +[v0.8.1]: https://github.com/stac-utils/pystac-client/compare/v0.8.0...v0.8.1 [v0.8.0]: https://github.com/stac-utils/pystac-client/compare/v0.7.7...v0.8.0 [v0.7.7]: https://github.com/stac-utils/pystac-client/compare/v0.7.6...v0.7.7 [v0.7.6]: https://github.com/stac-utils/pystac-client/compare/v0.7.5...v0.7.6 diff --git a/docs/index.rst b/docs/index.rst index 198f7ac7..a27ac16c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -19,6 +19,8 @@ STAC Versions +---------------+-----------+-----------------------------+ | pystac-client | STAC spec | STAC API Spec | +===============+===========+=============================+ +| 0.8.x | 1.0.x | 1.0.0-beta.1 - 1.0.0 | ++ --------------+-----------+-----------------------------+ | 0.7.x | 1.0.x | 1.0.0-beta.1 - 1.0.0 | +---------------+-----------+-----------------------------+ | 0.6.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-rc.2 | diff --git a/pystac_client/version.py b/pystac_client/version.py index 777f190d..8088f751 100644 --- a/pystac_client/version.py +++ b/pystac_client/version.py @@ -1 +1 @@ -__version__ = "0.8.0" +__version__ = "0.8.1"