diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bd6d2b31..0f464eae 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,7 +23,7 @@ axum = "0.7" clap = { version = "4", features = ["derive"] } duckdb = { version = "1", optional = true } # We have this dependency only to allow us to bundle it object_store = "0.11" -pgstac = { version = "0.2.0", path = "../pgstac", optional = true } +pgstac = { version = "0.2.1", path = "../pgstac", optional = true } pyo3 = { version = "0.22", optional = true } reqwest = "0.12" serde = "1" @@ -34,8 +34,8 @@ stac = { version = "0.10.0", path = "../core", features = [ "reqwest", ] } stac-api = { version = "0.6.0", path = "../api", features = ["client"] } -stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true } -stac-server = { version = "0.3.0", path = "../server", features = ["axum"] } +stac-duckdb = { version = "0.0.2", path = "../duckdb", optional = true } +stac-server = { version = "0.3.1", path = "../server", features = ["axum"] } stac-validate = { version = "0.3.0", path = "../validate" } thiserror = "1" tokio = { version = "1.23", features = [ diff --git a/duckdb/CHANGELOG.md b/duckdb/CHANGELOG.md index 6a96acb3..84230df7 100644 --- a/duckdb/CHANGELOG.md +++ b/duckdb/CHANGELOG.md @@ -6,15 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.0.2] - 2024-09-19 + ### Changed - Update **geoarrow** to v0.3.0 ([#367](https://github.com/stac-utils/stac-rs/pull/367)) +- Bump **stac** to v0.6.0, **stac-api** to v0.6.0 ## [0.0.1] - 2024-09-05 Initial release of **stac-duckdb**. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.1...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.2...main +[0.0.2]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.1...stac-duckdb-v0.0.2 [0.0.1]: https://github.com/stac-utils/stac-rs/releases/tag/stac-duckdb-v0.0.1 diff --git a/duckdb/Cargo.toml b/duckdb/Cargo.toml index 52c6a6c3..1c015f16 100644 --- a/duckdb/Cargo.toml +++ b/duckdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-duckdb" -version = "0.0.1" +version = "0.0.2" authors = ["Pete Gadomski "] edition = "2021" description = "Experimental client for querying stac-geoparquet using DuckDB" diff --git a/pgstac/CHANGELOG.md b/pgstac/CHANGELOG.md index c86d9f68..75f8346b 100644 --- a/pgstac/CHANGELOG.md +++ b/pgstac/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.2.1] - 2024-09-19 + +### Changed + +- Bump **stac** to v0.10.0, **stac-api** to v0.6.0 + ## [0.2.0] - 2024-09-16 ### Added diff --git a/pgstac/Cargo.toml b/pgstac/Cargo.toml index 390d0df1..148a77f7 100644 --- a/pgstac/Cargo.toml +++ b/pgstac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pgstac" -version = "0.2.0" +version = "0.2.1" authors = ["Pete Gadomski "] edition = "2021" description = "Rust interface for pgstac" diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index 6d85db2e..c051bdb1 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.3.1] - 2024.09-19 + +### Changed + +- Bump **stac** to v0.10.0, **stac-api** to v0.6.0 + ## [0.3.0] - 2024-09-16 ### Added @@ -45,7 +51,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-server-v0.3.0..main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.1..main +[0.3.1]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.3.0..stac-server-v0.3.1 [0.3.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.2.0..stac-server-v0.3.0 [0.2.0]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.1..stac-server-v0.2.0 [0.1.1]: https://github.com/stac-utils/stac-rs/compare/stac-server-v0.1.0..stac-server-v0.1.1 diff --git a/server/Cargo.toml b/server/Cargo.toml index 5abf4a8c..700bb924 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-server" -version = "0.3.0" +version = "0.3.1" edition = "2021" authors = ["Pete Gadomski "] description = "SpatioTemporal Asset Catalog (STAC) API server"