diff --git a/crates/cli/CHANGELOG.md b/crates/cli/CHANGELOG.md index 34b12c81..2cd6e9b8 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.10](https://github.com/stac-utils/rustac/compare/rustac-v0.2.9...rustac-v0.2.10) - 2026-05-26 + +### Other + +- remove pgstac crate (moved to pgstac repo) ([#1046](https://github.com/stac-utils/rustac/pull/1046)) + ## [0.2.9](https://github.com/stac-utils/rustac/compare/rustac-v0.2.8...rustac-v0.2.9) - 2026-03-02 ### Added diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index ba2b84ef..bd25ca9c 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.9" +version = "0.2.10" keywords = ["geospatial", "stac", "metadata", "geo", "raster"] authors.workspace = true edition.workspace = true @@ -26,14 +26,14 @@ futures-core.workspace = true futures-util.workspace = true pgstac = { workspace = true, optional = true } serde_json.workspace = true -stac = { version = "0.17.0", path = "../core" } -stac-duckdb = { version = "0.3.7", path = "../duckdb" } -stac-io = { version = "0.2.8", path = "../io", features = [ +stac = { version = "0.17.1", path = "../core" } +stac-duckdb = { version = "0.3.8", path = "../duckdb" } +stac-io = { version = "0.2.9", path = "../io", features = [ "store-all", "geoparquet", ] } -stac-server = { version = "0.5.2", path = "../server", features = ["axum", "duckdb"] } -stac-validate = { version = "0.6.8", path = "../validate" } +stac-server = { version = "0.5.3", path = "../server", features = ["axum", "duckdb"] } +stac-validate = { version = "0.6.9", path = "../validate" } tokio = { workspace = true, features = [ "macros", "io-std", diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 93be45d3..032e5910 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/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.17.1](https://github.com/stac-utils/rustac/compare/stac-v0.17.0...stac-v0.17.1) - 2026-05-26 + +### Fixed + +- *(docs)* correct description of into_cql2_text ([#1036](https://github.com/stac-utils/rustac/pull/1036)) + ## [0.17.0](https://github.com/stac-utils/rustac/compare/stac-v0.16.5...stac-v0.17.0) - 2026-04-07 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index cf3bc32c..31cd204f 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.17.0" +version = "0.17.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 0039787c..cea57168 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.8](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.7...stac-duckdb-v0.3.8) - 2026-05-26 + +### Other + +- remove pgstac crate (moved to pgstac repo) ([#1046](https://github.com/stac-utils/rustac/pull/1046)) + ## [0.3.7](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.6...stac-duckdb-v0.3.7) - 2026-03-02 ### Other diff --git a/crates/duckdb/Cargo.toml b/crates/duckdb/Cargo.toml index 75f9227b..9c68956c 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.7" +version = "0.3.8" keywords = ["geospatial", "stac", "metadata", "geo", "raster"] authors.workspace = true edition.workspace = true @@ -30,7 +30,7 @@ geojson.workspace = true getrandom.workspace = true log.workspace = true serde_json.workspace = true -stac = { version = "0.17.0", path = "../core", features = ["geoarrow", "geo"] } +stac = { version = "0.17.1", path = "../core", features = ["geoarrow", "geo"] } thiserror.workspace = true [dev-dependencies] diff --git a/crates/extensions/CHANGELOG.md b/crates/extensions/CHANGELOG.md index bd7251fc..59994c04 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.11](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.10...stac-extensions-v0.1.11) - 2026-05-26 + +### Other + +- updated the following local packages: stac + ## [0.1.10](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.9...stac-extensions-v0.1.10) - 2026-04-07 ### Fixed diff --git a/crates/extensions/Cargo.toml b/crates/extensions/Cargo.toml index 6b4f267f..0e8eaa8b 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.10" +version = "0.1.11" 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.17.0", path = "../core" } +stac = { version = "0.17.1", path = "../core" } diff --git a/crates/io/CHANGELOG.md b/crates/io/CHANGELOG.md index c601cbc5..7cf4e659 100644 --- a/crates/io/CHANGELOG.md +++ b/crates/io/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.9](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.8...stac-io-v0.2.9) - 2026-05-26 + +### Other + +- update Cargo.toml dependencies + ## [0.2.8](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.7...stac-io-v0.2.8) - 2026-04-07 ### Added diff --git a/crates/io/Cargo.toml b/crates/io/Cargo.toml index aef4d425..9dfa42de 100644 --- a/crates/io/Cargo.toml +++ b/crates/io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-io" -version = "0.2.8" +version = "0.2.9" 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.17.0", path = "../core", features = ["std", "async"] } +stac = { version = "0.17.1", path = "../core", features = ["std", "async"] } thiserror.workspace = true tokio.workspace = true tracing.workspace = true diff --git a/crates/server/CHANGELOG.md b/crates/server/CHANGELOG.md index 334c2237..7db43c17 100644 --- a/crates/server/CHANGELOG.md +++ b/crates/server/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.5.3](https://github.com/stac-utils/rustac/compare/stac-server-v0.5.2...stac-server-v0.5.3) - 2026-05-26 + +### Other + +- remove pgstac crate (moved to pgstac repo) ([#1046](https://github.com/stac-utils/rustac/pull/1046)) + ## [0.5.2](https://github.com/stac-utils/rustac/compare/stac-server-v0.5.1...stac-server-v0.5.2) - 2026-04-07 ### Added diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 981688c8..ab2a0811 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.5.2" +version = "0.5.3" keywords = ["geospatial", "stac", "metadata", "geo", "server"] categories = ["science", "data-structures"] edition.workspace = true @@ -36,8 +36,8 @@ rustls = { workspace = true, optional = true } serde.workspace = true serde_json.workspace = true serde_urlencoded.workspace = true -stac = { version = "0.17.0", path = "../core", features = ["async"] } -stac-duckdb = { version = "0.3.7", path = "../duckdb", features = ["async"], optional = true } +stac = { version = "0.17.1", path = "../core", features = ["async"] } +stac-duckdb = { version = "0.3.8", path = "../duckdb", features = ["async"], 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 9b72451d..0eda8d09 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.9](https://github.com/stac-utils/rustac/compare/stac-validate-v0.6.8...stac-validate-v0.6.9) - 2026-05-26 + +### Other + +- *(deps)* bump the jsonschema group with 2 updates ([#1031](https://github.com/stac-utils/rustac/pull/1031)) + ## [0.6.8](https://github.com/stac-utils/rustac/compare/stac-validate-v0.6.7...stac-validate-v0.6.8) - 2026-04-07 ### Other diff --git a/crates/validate/Cargo.toml b/crates/validate/Cargo.toml index 2321e12b..ad24437c 100644 --- a/crates/validate/Cargo.toml +++ b/crates/validate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stac-validate" -version = "0.6.8" +version = "0.6.9" readme = "README.md" description = "json-schema validation for the Rust implementation of the STAC specification" authors.workspace = true @@ -17,7 +17,7 @@ jsonschema.workspace = true reqwest = { workspace = true, features = ["blocking", "json"] } serde.workspace = true serde_json.workspace = true -stac = { version = "0.17.0", path = "../core" } +stac = { version = "0.17.1", path = "../core" } thiserror.workspace = true async-trait.workspace = true referencing.workspace = true diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index dc63986b..92cfdcbd 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -26,7 +26,7 @@ getrandom = { version = "0.4", features = ["wasm_js"] } getrandom_03 = { package = "getrandom", version = "0.3", features = ["wasm_js"] } serde.workspace = true serde-wasm-bindgen = "0.6.5" -stac = { version = "0.17.0", path = "../core", features = ["geoparquet"] } +stac = { version = "0.17.1", path = "../core", features = ["geoparquet"] } thiserror.workspace = true wasm-bindgen = "0.2.84"