From c5507e542bd6a9153783dc99df4baeaaf7d9b4ee Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Sun, 7 Apr 2024 06:33:23 -0600 Subject: [PATCH] release: stac v0.5.3, stac-api v0.3.3, stac-async v0.5.0 --- stac-api/CHANGELOG.md | 5 ++++- stac-api/Cargo.toml | 2 +- stac-async/CHANGELOG.md | 5 ++++- stac-async/Cargo.toml | 2 +- stac-cli/Cargo.toml | 2 +- stac/CHANGELOG.md | 5 ++++- stac/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 7 deletions(-) diff --git a/stac-api/CHANGELOG.md b/stac-api/CHANGELOG.md index 39c9f3ca..8c3d6939 100644 --- a/stac-api/CHANGELOG.md +++ b/stac-api/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.3.3] - 2024-04-07 + ### Added - `Search::validate` ([#206](https://github.com/stac-utils/stac-rs/pull/206)) @@ -76,7 +78,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Initial release -[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.2...main +[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.3...main +[0.3.3]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.2...stac-api-v0.3.3 [0.3.2]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.1...stac-api-v0.3.2 [0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.3.0...stac-api-v0.3.1 [0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.2.0...stac-api-v0.3.0 diff --git a/stac-api/Cargo.toml b/stac-api/Cargo.toml index b4f565d7..beac6676 100644 --- a/stac-api/Cargo.toml +++ b/stac-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-api" -version = "0.3.2" +version = "0.3.3" authors = ["Pete Gadomski "] edition = "2021" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification" diff --git a/stac-async/CHANGELOG.md b/stac-async/CHANGELOG.md index 87ea1668..9d547a4d 100644 --- a/stac-async/CHANGELOG.md +++ b/stac-async/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.5.0] + ### Added - `ApiClient::with_client` ([#227](https://github.com/stac-utils/stac-rs/pull/227)) @@ -48,7 +50,8 @@ No changes. Initial release of **stac-async**. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.1...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.5.0...main +[0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.1...stac-async-v0.5.0 [0.4.1]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.4.0...stac-async-v0.4.1 [0.4.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.3.0...stac-async-v0.4.0 [0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-async-v0.2.0...stac-async-v0.3.0 diff --git a/stac-async/Cargo.toml b/stac-async/Cargo.toml index 2a1d148b..4827f31e 100644 --- a/stac-async/Cargo.toml +++ b/stac-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-async" -version = "0.4.1" +version = "0.5.0" edition = "2021" description = "Asynchronous I/O for stac-rs" documentation = "https://docs.rs/stac-async" diff --git a/stac-cli/Cargo.toml b/stac-cli/Cargo.toml index 4b304c2f..d9670b7a 100644 --- a/stac-cli/Cargo.toml +++ b/stac-cli/Cargo.toml @@ -19,7 +19,7 @@ serde = "1" serde_json = "1" stac = { version = "0.5", path = "../stac" } stac-api = { version = "0.3", path = "../stac-api" } -stac-async = { version = "0.4", path = "../stac-async" } +stac-async = { version = "0.5", path = "../stac-async" } stac-validate = { version = "0.1", path = "../stac-validate" } thiserror = "1" tokio = { version = "1.23", features = ["macros", "rt-multi-thread"] } diff --git a/stac/CHANGELOG.md b/stac/CHANGELOG.md index b6af2c7d..7ab9449d 100644 --- a/stac/CHANGELOG.md +++ b/stac/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.5.3] - 2024-04-07 + ### Added - `Geometry::point` ([#206](https://github.com/stac-utils/stac-rs/pull/206)) @@ -255,7 +257,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Initial release. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.2...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.3...main +[0.5.3]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.2...stac-v0.5.3 [0.5.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.1...stac-v0.5.2 [0.5.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.5.0...stac-v0.5.1 [0.5.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.4.0...stac-v0.5.0 diff --git a/stac/Cargo.toml b/stac/Cargo.toml index 10b1a05f..b6c3abdd 100644 --- a/stac/Cargo.toml +++ b/stac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac" -version = "0.5.2" +version = "0.5.3" authors = ["Pete Gadomski "] edition = "2021" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"