diff --git a/Cargo.toml b/Cargo.toml index 712bb995..5889e127 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,10 +70,10 @@ rustls = { version = "0.23.14", default-features = false } serde = "1.0" serde_json = "1.0" serde_urlencoded = "0.7.1" -stac = { version = "0.11.0", path = "crates/core" } -stac-api = { version = "0.6.2", path = "crates/api" } -stac-derive = { version = "0.1.0", path = "crates/derive" } -stac-duckdb = { version = "0.0.3", path = "crates/duckdb" } +stac = { version = "0.11.1", path = "crates/core" } +stac-api = { version = "0.7.0", path = "crates/api" } +stac-derive = { version = "0.2.0", path = "crates/derive" } +stac-duckdb = { version = "0.1.0", path = "crates/duckdb" } stac-server = { version = "0.3.2", path = "crates/server" } syn = "2.0" tempfile = "3.13" diff --git a/crates/api/CHANGELOG.md b/crates/api/CHANGELOG.md index 68bdce1c..82f431ff 100644 --- a/crates/api/CHANGELOG.md +++ b/crates/api/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.7.0] - 2025-01-02 + ### Added - Convenience methods on `Search` ([#562](https://github.com/stac-utils/stac-rs/pull/562), [#584](https://github.com/stac-utils/stac-rs/pull/584)) @@ -145,7 +147,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.6.2...main +[unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.7.0...main +[0.7.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.2...stac-api-v0.7.0 [0.6.2]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.1...stac-api-v0.6.2 [0.6.1]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.6.0...stac-api-v0.6.1 [0.6.0]: https://github.com/stac-utils/stac-rs/compare/stac-api-v0.5.0...stac-api-v0.6.0 diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 09ca597a..6cd04616 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-api" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) API specification" -version = "0.6.2" +version = "0.7.0" keywords = ["geospatial", "stac", "metadata", "geo", "api"] categories = ["science", "data-structures", "web-programming"] authors.workspace = true diff --git a/crates/api/README.md b/crates/api/README.md index e12aa823..c46dbc11 100644 --- a/crates/api/README.md +++ b/crates/api/README.md @@ -16,7 +16,7 @@ To use the library in your project: ```toml [dependencies] -stac-api = "0.6" +stac-api = "0.7" ``` **stac-api** has one optional feature. @@ -24,7 +24,7 @@ stac-api = "0.6" ```toml [dependencies] -stac-api = { version = "0.6", features = ["geo"] } +stac-api = { version = "0.7", features = ["geo"] } ``` ## Examples diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 831811ef..72b3284e 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.11.1] - 2025-01-02 + ### Added - `Fields` trait impl for `Link` ([#542](https://github.com/stac-utils/stac-rs/pull/542)) @@ -416,7 +418,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.11.0...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.1...main +[0.11.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.11.0...stac-v0.11.1 [0.11.0]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.2...stac-v0.11.0 [0.10.2]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.1...stac-v0.10.2 [0.10.1]: https://github.com/stac-utils/stac-rs/compare/stac-v0.10.0...stac-v0.10.1 diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 567cfc8e..e806045c 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac" description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification" -version = "0.11.0" +version = "0.11.1" keywords = ["geospatial", "stac", "metadata", "geo"] authors.workspace = true categories.workspace = true diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 64125c63..f79aa37a 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-derive" description = "Proc macros for deriving STAC traits. Should usually not be used directly." -version = "0.1.0" +version = "0.2.0" authors.workspace = true edition.workspace = true homepage.workspace = true diff --git a/crates/duckdb/CHANGELOG.md b/crates/duckdb/CHANGELOG.md index b1874de6..0761dcc9 100644 --- a/crates/duckdb/CHANGELOG.md +++ b/crates/duckdb/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.1.0] - 2025-01-02 + ### Changed - Updated to **DuckDB** v1.1 and **geoarrow-rs** v0.4.0-beta.3 ([#562](https://github.com/stac-utils/stac-rs/pull/562)) @@ -28,7 +30,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Initial release of **stac-duckdb**. -[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.3...main +[Unreleased]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.1.0...main +[0.1.0]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.3...stac-duckdb-v0.1.0 [0.0.3]: https://github.com/stac-utils/stac-rs/compare/stac-duckdb-v0.0.2...stac-duckdb-v0.0.3 [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/crates/duckdb/Cargo.toml b/crates/duckdb/Cargo.toml index ff87008d..f7c3e9d4 100644 --- a/crates/duckdb/Cargo.toml +++ b/crates/duckdb/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-duckdb" -description = "Experimental client for querying stac-geoparquet using DuckDB" -version = "0.0.3" +description = "Client for querying stac-geoparquet using DuckDB" +version = "0.1.0" keywords = ["geospatial", "stac", "metadata", "geo", "raster"] authors.workspace = true edition.workspace = true diff --git a/crates/duckdb/README.md b/crates/duckdb/README.md index aa1edd1a..4c1a0cd0 100644 --- a/crates/duckdb/README.md +++ b/crates/duckdb/README.md @@ -5,7 +5,7 @@ [![Crates.io](https://img.shields.io/crates/v/stac-duckdb?style=for-the-badge)](https://crates.io/crates/stac-duckdb) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT) -Experimental client using [DuckDB](https://duckdb.org/) to search [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet). +Use [DuckDB](https://duckdb.org/) to search [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet). ## Usage