diff --git a/crates/cli/CHANGELOG.md b/crates/cli/CHANGELOG.md index e9035f25..dfd33642 100644 --- a/crates/cli/CHANGELOG.md +++ b/crates/cli/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1](https://github.com/stac-utils/rustac/compare/rustac-v0.2.0...rustac-v0.2.1) - 2025-12-15 + +### Other + +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.2.0](https://github.com/stac-utils/rustac/compare/rustac-v0.1.2...rustac-v0.2.0) (2025-12-01) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8fbb533c..ed0d6e15 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustac" description = "Command line interface for rustac" -version = "0.2.0" +version = "0.2.1" keywords = ["geospatial", "stac", "metadata", "geo", "raster"] authors.workspace = true edition.workspace = true @@ -25,14 +25,14 @@ clap_complete.workspace = true futures-core.workspace = true futures-util.workspace = true serde_json.workspace = true -stac = { version = "0.15.0", path = "../core" } -stac-duckdb = { version = "0.3.0", path = "../duckdb" } -stac-io = { version = "0.2.0", path = "../io", features = [ +stac = { version = "0.15.1", path = "../core" } +stac-duckdb = { version = "0.3.1", path = "../duckdb" } +stac-io = { version = "0.2.1", path = "../io", features = [ "store-all", "geoparquet", ] } -stac-server = { version = "0.4.0", path = "../server", features = ["axum", "duckdb"] } -stac-validate = { version = "0.6.0", path = "../validate" } +stac-server = { version = "0.4.1", path = "../server", features = ["axum", "duckdb"] } +stac-validate = { version = "0.6.1", path = "../validate" } tokio = { workspace = true, features = [ "macros", "io-std", diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index e419908c..56d6c898 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.15.1](https://github.com/stac-utils/rustac/compare/stac-v0.15.0...stac-v0.15.1) - 2025-12-15 + +### Added + +- add matches_cql2 ([#909](https://github.com/stac-utils/rustac/pull/909)) + +### Other + +- switch to release-plz ([#911](https://github.com/stac-utils/rustac/pull/911)) +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.15.0](https://github.com/stac-utils/rustac/compare/stac-v0.14.0...stac-v0.15.0) (2025-12-01) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index f4e20875..1979da72 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.15.0" +version = "0.15.1" keywords = ["geospatial", "stac", "metadata", "geo"] authors.workspace = true categories.workspace = true diff --git a/crates/duckdb/CHANGELOG.md b/crates/duckdb/CHANGELOG.md index 17876eca..83c549ae 100644 --- a/crates/duckdb/CHANGELOG.md +++ b/crates/duckdb/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.0...stac-duckdb-v0.3.1) - 2025-12-15 + +### Other + +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.3.0](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.2.2...stac-duckdb-v0.3.0) (2025-12-01) diff --git a/crates/duckdb/Cargo.toml b/crates/duckdb/Cargo.toml index ca99800b..b55a8def 100644 --- a/crates/duckdb/Cargo.toml +++ b/crates/duckdb/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-duckdb" description = "Client for querying stac-geoparquet using DuckDB" -version = "0.3.0" +version = "0.3.1" keywords = ["geospatial", "stac", "metadata", "geo", "raster"] authors.workspace = true edition.workspace = true @@ -27,11 +27,11 @@ geojson.workspace = true getrandom.workspace = true log.workspace = true serde_json.workspace = true -stac = { version = "0.15.0", path = "../core", features = ["geoarrow", "geo"] } +stac = { version = "0.15.1", path = "../core", features = ["geoarrow", "geo"] } thiserror.workspace = true [dev-dependencies] geo.workspace = true rstest.workspace = true -stac-validate = { version = "0.6.0", path = "../validate" } +stac-validate = { version = "0.6.1", path = "../validate" } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } diff --git a/crates/extensions/CHANGELOG.md b/crates/extensions/CHANGELOG.md index db620c07..f4e438af 100644 --- a/crates/extensions/CHANGELOG.md +++ b/crates/extensions/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.3](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.2...stac-extensions-v0.1.3) - 2025-12-15 + +### Other + +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.1.2](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.1...stac-extensions-v0.1.2) (2025-12-01) diff --git a/crates/extensions/Cargo.toml b/crates/extensions/Cargo.toml index 636af6e3..5097ee18 100644 --- a/crates/extensions/Cargo.toml +++ b/crates/extensions/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-extensions" description = "Manage STAC extensions (https://stac-extensions.github.io/)" -version = "0.1.2" +version = "0.1.3" keywords = ["geospatial", "stac", "extensions"] authors.workspace = true edition.workspace = true @@ -16,4 +16,4 @@ geojson.workspace = true indexmap.workspace = true serde.workspace = true serde_json.workspace = true -stac = { version = "0.15.0", path = "../core" } +stac = { version = "0.15.1", path = "../core" } diff --git a/crates/io/CHANGELOG.md b/crates/io/CHANGELOG.md index 483c4488..0ba5055d 100644 --- a/crates/io/CHANGELOG.md +++ b/crates/io/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.0...stac-io-v0.2.1) - 2025-12-15 + +### Other + +- switch to release-plz ([#911](https://github.com/stac-utils/rustac/pull/911)) +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.2.0](https://github.com/stac-utils/rustac/compare/stac-io-v0.1.2...stac-io-v0.2.0) (2025-12-01) diff --git a/crates/io/Cargo.toml b/crates/io/Cargo.toml index 173bb849..e66c3d26 100644 --- a/crates/io/Cargo.toml +++ b/crates/io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-io" -version = "0.2.0" +version = "0.2.1" description = "Input and output (I/O) for the SpatioTemporal Asset Catalog (STAC)" authors.workspace = true edition.workspace = true @@ -31,7 +31,7 @@ parquet = { workspace = true, optional = true, features = ["arrow", "async", "ob reqwest = { workspace = true, features = ["json", "blocking"] } serde.workspace = true serde_json = { workspace = true, features = ["preserve_order"] } -stac = { version = "0.15.0", path = "../core" } +stac = { version = "0.15.1", path = "../core" } thiserror.workspace = true tokio.workspace = true tracing.workspace = true diff --git a/crates/pgstac/CHANGELOG.md b/crates/pgstac/CHANGELOG.md index 3e8daef4..66fc2c98 100644 --- a/crates/pgstac/CHANGELOG.md +++ b/crates/pgstac/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1](https://github.com/stac-utils/rustac/compare/pgstac-v0.4.0...pgstac-v0.4.1) - 2025-12-15 + +### Other + +- switch to release-plz ([#911](https://github.com/stac-utils/rustac/pull/911)) +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.4.0](https://github.com/stac-utils/rustac/compare/pgstac-v0.3.2...pgstac-v0.4.0) (2025-12-01) diff --git a/crates/pgstac/Cargo.toml b/crates/pgstac/Cargo.toml index cca06a0e..3bd7341c 100644 --- a/crates/pgstac/Cargo.toml +++ b/crates/pgstac/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pgstac" description = "Rust interface for pgstac" -version = "0.4.0" +version = "0.4.1" keywords = ["geospatial", "stac", "metadata", "raster", "database"] categories = ["database", "data-structures", "science"] authors.workspace = true @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] serde.workspace = true serde_json.workspace = true -stac = { version = "0.15.0", path = "../core" } +stac = { version = "0.15.1", path = "../core" } thiserror.workspace = true tokio-postgres = { workspace = true, features = ["with-serde_json-1"] } diff --git a/crates/server/CHANGELOG.md b/crates/server/CHANGELOG.md index 6aacccdd..e52b5654 100644 --- a/crates/server/CHANGELOG.md +++ b/crates/server/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1](https://github.com/stac-utils/rustac/compare/stac-server-v0.4.0...stac-server-v0.4.1) - 2025-12-15 + +### Other + +- switch to release-plz ([#911](https://github.com/stac-utils/rustac/pull/911)) +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.4.0](https://github.com/stac-utils/rustac/compare/stac-server-v0.3.6...stac-server-v0.4.0) (2025-12-01) diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index ba7ca456..d8088d76 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stac-server" description = "SpatioTemporal Asset Catalog (STAC) API server" -version = "0.4.0" +version = "0.4.1" keywords = ["geospatial", "stac", "metadata", "geo", "server"] categories = ["science", "data-structures"] edition.workspace = true @@ -30,13 +30,13 @@ bb8-postgres = { workspace = true, optional = true } bytes = { workspace = true, optional = true } http.workspace = true mime = { workspace = true, optional = true } -pgstac = { version = "0.4.0", path = "../pgstac", optional = true } +pgstac = { version = "0.4.1", path = "../pgstac", optional = true } rustls = { workspace = true, optional = true } serde.workspace = true serde_json.workspace = true serde_urlencoded.workspace = true -stac = { version = "0.15.0", path = "../core" } -stac-duckdb = { version = "0.3.0", path = "../duckdb", optional = true } +stac = { version = "0.15.1", path = "../core" } +stac-duckdb = { version = "0.3.1", path = "../duckdb", optional = true } thiserror.workspace = true tokio-postgres = { workspace = true, optional = true } tokio-postgres-rustls = { workspace = true, optional = true } diff --git a/crates/validate/CHANGELOG.md b/crates/validate/CHANGELOG.md index 072a868b..d518297e 100644 --- a/crates/validate/CHANGELOG.md +++ b/crates/validate/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1](https://github.com/stac-utils/rustac/compare/stac-validate-v0.6.0...stac-validate-v0.6.1) - 2025-12-15 + +### Other + +- update releasing to be much simpler ([#899](https://github.com/stac-utils/rustac/pull/899)) + ## [0.6.0](https://github.com/stac-utils/rustac/compare/stac-validate-v0.5.1...stac-validate-v0.6.0) (2025-12-01) diff --git a/crates/validate/Cargo.toml b/crates/validate/Cargo.toml index 7de48aa3..8e7753b1 100644 --- a/crates/validate/Cargo.toml +++ b/crates/validate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-validate" -version = "0.6.0" +version = "0.6.1" readme = "README.md" description = "json-schema validation for the Rust implementation of the STAC specification" authors.workspace = true @@ -17,13 +17,13 @@ jsonschema.workspace = true reqwest = { workspace = true, features = ["blocking", "json"] } serde.workspace = true serde_json.workspace = true -stac = { version = "0.15.0", path = "../core" } +stac = { version = "0.15.1", path = "../core" } thiserror.workspace = true async-trait.workspace = true referencing.workspace = true async-recursion.workspace = true [dev-dependencies] -stac-io = { version = "0.2.0", path = "../io" } +stac-io = { version = "0.2.1", path = "../io" } rstest.workspace = true tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index f64bdf1f..493d9e88 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -21,7 +21,7 @@ arrow-schema.workspace = true arrow-wasm = { git = "https://github.com/kylebarron/arrow-wasm", rev = "6da94ef0a1522a244984a7d3d58a0339d0851d96" } serde.workspace = true serde-wasm-bindgen = "0.6.5" -stac = { version = "0.15.0", path = "../core", features = ["geoparquet"] } +stac = { version = "0.15.1", path = "../core", features = ["geoparquet"] } thiserror.workspace = true wasm-bindgen = "0.2.84"