Skip to content

Commit 3ee641e

Browse files
chore: release (#1032)
## πŸ€– New release * `stac`: 0.17.0 -> 0.17.1 (βœ“ API compatible changes) * `stac-duckdb`: 0.3.7 -> 0.3.8 * `stac-io`: 0.2.8 -> 0.2.9 (βœ“ API compatible changes) * `stac-server`: 0.5.2 -> 0.5.3 (βœ“ API compatible changes) * `stac-validate`: 0.6.8 -> 0.6.9 (βœ“ API compatible changes) * `rustac`: 0.2.9 -> 0.2.10 * `stac-wasm`: 0.1.0 * `stac-extensions`: 0.1.10 -> 0.1.11 <details><summary><i><b>Changelog</b></i></summary><p> ## `stac` <blockquote> ## [0.17.1](stac-v0.17.0...stac-v0.17.1) - 2026-06-17 ### Added - deserialize lists into fields ### Fixed - don't require include or exclude when deserializing fields - *(docs)* correct description of into_cql2_text ([#1036](#1036)) </blockquote> ## `stac-duckdb` <blockquote> ## [0.3.8](stac-duckdb-v0.3.7...stac-duckdb-v0.3.8) - 2026-06-17 ### Other - add note about DUCKDB_DOWNLOAD_LIB ([#1062](#1062)) - remove pgstac crate (moved to pgstac repo) ([#1046](#1046)) </blockquote> ## `stac-io` <blockquote> ## [0.2.9](stac-io-v0.2.8...stac-io-v0.2.9) - 2026-06-17 ### Other - more debug info when searching </blockquote> ## `stac-server` <blockquote> ## [0.5.3](stac-server-v0.5.2...stac-server-v0.5.3) - 2026-06-17 ### Other - remove pgstac crate (moved to pgstac repo) ([#1046](#1046)) </blockquote> ## `stac-validate` <blockquote> ## [0.6.9](stac-validate-v0.6.8...stac-validate-v0.6.9) - 2026-06-17 ### Other - *(deps)* bump the jsonschema group with 2 updates ([#1031](#1031)) </blockquote> ## `rustac` <blockquote> ## [0.2.10](rustac-v0.2.9...rustac-v0.2.10) - 2026-06-17 ### Other - add note about DUCKDB_DOWNLOAD_LIB ([#1062](#1062)) - remove pgstac crate (moved to pgstac repo) ([#1046](#1046)) </blockquote> ## `stac-wasm` <blockquote> ## [0.1.0](stac-wasm-v0.0.4...stac-wasm-v0.1.0) (2025-12-01) ### ⚠ BREAKING CHANGES * remove unused error enums ([#868](#868)) ### Features * stac_wasm.stacJsonToParquet ([#786](#786)) ([6b1971a](6b1971a)) * wasm ([#744](#744)) ([db5cd21](db5cd21)) ### Bug Fixes * pin arrow-wasm ([#785](#785)) ([8f9c28b](8f9c28b)) * remove the package lock ([#745](#745)) ([b3337f6](b3337f6)) * remove unused error enums ([#868](#868)) ([cf0e815](cf0e815)) ### Dependencies * The following workspace dependencies were updated * dependencies * stac bumped from 0.14.0 to 0.15.0 </blockquote> ## `stac-extensions` <blockquote> ## [0.1.11](stac-extensions-v0.1.10...stac-extensions-v0.1.11) - 2026-06-17 ### Other - updated the following local packages: stac </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: stac-utils-release-bot[bot] <249776822+stac-utils-release-bot[bot]@users.noreply.github.com>
1 parent e44f956 commit 3ee641e

15 files changed

Lines changed: 68 additions & 19 deletions

File tree

β€Žcrates/cli/CHANGELOG.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [0.2.10](https://github.com/stac-utils/rustac/compare/rustac-v0.2.9...rustac-v0.2.10) - 2026-06-17
8+
9+
### Other
10+
11+
- add note about DUCKDB_DOWNLOAD_LIB ([#1062](https://github.com/stac-utils/rustac/pull/1062))
12+
- remove pgstac crate (moved to pgstac repo) ([#1046](https://github.com/stac-utils/rustac/pull/1046))
13+
714
## [0.2.9](https://github.com/stac-utils/rustac/compare/rustac-v0.2.8...rustac-v0.2.9) - 2026-03-02
815

916
### Added

β€Žcrates/cli/Cargo.tomlβ€Ž

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustac"
33
description = "Command line interface for rustac"
4-
version = "0.2.9"
4+
version = "0.2.10"
55
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
66
authors.workspace = true
77
edition.workspace = true
@@ -26,14 +26,14 @@ futures-core.workspace = true
2626
futures-util.workspace = true
2727
pgstac = { workspace = true, optional = true }
2828
serde_json.workspace = true
29-
stac = { version = "0.17.0", path = "../core" }
30-
stac-duckdb = { version = "0.3.7", path = "../duckdb" }
31-
stac-io = { version = "0.2.8", path = "../io", features = [
29+
stac = { version = "0.17.1", path = "../core" }
30+
stac-duckdb = { version = "0.3.8", path = "../duckdb" }
31+
stac-io = { version = "0.2.9", path = "../io", features = [
3232
"store-all",
3333
"geoparquet",
3434
] }
35-
stac-server = { version = "0.5.2", path = "../server", features = ["axum", "duckdb"] }
36-
stac-validate = { version = "0.6.8", path = "../validate" }
35+
stac-server = { version = "0.5.3", path = "../server", features = ["axum", "duckdb"] }
36+
stac-validate = { version = "0.6.9", path = "../validate" }
3737
tokio = { workspace = true, features = [
3838
"macros",
3939
"io-std",

β€Žcrates/core/CHANGELOG.mdβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [0.17.1](https://github.com/stac-utils/rustac/compare/stac-v0.17.0...stac-v0.17.1) - 2026-06-17
8+
9+
### Added
10+
11+
- deserialize lists into fields
12+
13+
### Fixed
14+
15+
- don't require include or exclude when deserializing fields
16+
- *(docs)* correct description of into_cql2_text ([#1036](https://github.com/stac-utils/rustac/pull/1036))
17+
718
## [0.17.0](https://github.com/stac-utils/rustac/compare/stac-v0.16.5...stac-v0.17.0) - 2026-04-07
819

920
### Added

β€Žcrates/core/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stac"
33
description = "Rust library for the SpatioTemporal Asset Catalog (STAC) specification"
4-
version = "0.17.0"
4+
version = "0.17.1"
55
keywords = ["geospatial", "stac", "metadata", "geo"]
66
authors.workspace = true
77
categories.workspace = true

β€Žcrates/duckdb/CHANGELOG.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [0.3.8](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.7...stac-duckdb-v0.3.8) - 2026-06-17
8+
9+
### Other
10+
11+
- add note about DUCKDB_DOWNLOAD_LIB ([#1062](https://github.com/stac-utils/rustac/pull/1062))
12+
- remove pgstac crate (moved to pgstac repo) ([#1046](https://github.com/stac-utils/rustac/pull/1046))
13+
714
## [0.3.7](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.6...stac-duckdb-v0.3.7) - 2026-03-02
815

916
### Other

β€Žcrates/duckdb/Cargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stac-duckdb"
33
description = "Client for querying stac-geoparquet using DuckDB"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
66
authors.workspace = true
77
edition.workspace = true
@@ -30,7 +30,7 @@ geojson.workspace = true
3030
getrandom.workspace = true
3131
log.workspace = true
3232
serde_json.workspace = true
33-
stac = { version = "0.17.0", path = "../core", features = ["geoarrow", "geo"] }
33+
stac = { version = "0.17.1", path = "../core", features = ["geoarrow", "geo"] }
3434
thiserror.workspace = true
3535

3636
[dev-dependencies]

β€Žcrates/extensions/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [0.1.11](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.10...stac-extensions-v0.1.11) - 2026-06-17
8+
9+
### Other
10+
11+
- updated the following local packages: stac
12+
713
## [0.1.10](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.9...stac-extensions-v0.1.10) - 2026-04-07
814

915
### Fixed

β€Žcrates/extensions/Cargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stac-extensions"
33
description = "Manage STAC extensions (https://stac-extensions.github.io/)"
4-
version = "0.1.10"
4+
version = "0.1.11"
55
keywords = ["geospatial", "stac", "extensions"]
66
authors.workspace = true
77
edition.workspace = true
@@ -16,4 +16,4 @@ geojson.workspace = true
1616
indexmap.workspace = true
1717
serde.workspace = true
1818
serde_json.workspace = true
19-
stac = { version = "0.17.0", path = "../core" }
19+
stac = { version = "0.17.1", path = "../core" }

β€Žcrates/io/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [0.2.9](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.8...stac-io-v0.2.9) - 2026-06-17
8+
9+
### Other
10+
11+
- more debug info when searching
12+
713
## [0.2.8](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.7...stac-io-v0.2.8) - 2026-04-07
814

915
### Added

β€Žcrates/io/Cargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac-io"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
description = "Input and output (I/O) for the SpatioTemporal Asset Catalog (STAC)"
55
authors.workspace = true
66
edition.workspace = true
@@ -31,7 +31,7 @@ parquet = { workspace = true, optional = true, features = ["arrow", "async", "ob
3131
reqwest = { workspace = true, features = ["json", "blocking"] }
3232
serde.workspace = true
3333
serde_json = { workspace = true, features = ["preserve_order"] }
34-
stac = { version = "0.17.0", path = "../core", features = ["std", "async"] }
34+
stac = { version = "0.17.1", path = "../core", features = ["std", "async"] }
3535
thiserror.workspace = true
3636
tokio.workspace = true
3737
tracing.workspace = true

0 commit comments

Comments
Β (0)