Skip to content

Commit 25f4018

Browse files
chore: release
1 parent 7a4243e commit 25f4018

File tree

17 files changed

+71
-23
lines changed

17 files changed

+71
-23
lines changed

crates/cli/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.4](https://github.com/stac-utils/rustac/compare/rustac-v0.2.3...rustac-v0.2.4) - 2026-01-20
8+
9+
### Other
10+
11+
- updated the following local packages: stac, stac-io, stac-validate, pgstac, stac-duckdb, stac-server
12+
713
## [0.2.3](https://github.com/stac-utils/rustac/compare/rustac-v0.2.2...rustac-v0.2.3) - 2026-01-14
814

915
### Added

crates/cli/Cargo.toml

Lines changed: 7 additions & 7 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.3"
4+
version = "0.2.4"
55
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
66
authors.workspace = true
77
edition.workspace = true
@@ -24,16 +24,16 @@ clap = { workspace = true, features = ["derive"] }
2424
clap_complete.workspace = true
2525
futures-core.workspace = true
2626
futures-util.workspace = true
27-
pgstac = { version = "0.4.3", path = "../pgstac", optional = true }
27+
pgstac = { version = "0.4.4", path = "../pgstac", optional = true }
2828
serde_json.workspace = true
29-
stac = { version = "0.16.0", path = "../core" }
30-
stac-duckdb = { version = "0.3.2", path = "../duckdb" }
31-
stac-io = { version = "0.2.2", path = "../io", features = [
29+
stac = { version = "0.16.1", path = "../core" }
30+
stac-duckdb = { version = "0.3.3", path = "../duckdb" }
31+
stac-io = { version = "0.2.3", path = "../io", features = [
3232
"store-all",
3333
"geoparquet",
3434
] }
35-
stac-server = { version = "0.4.3", path = "../server", features = ["axum", "duckdb"] }
36-
stac-validate = { version = "0.6.2", path = "../validate" }
35+
stac-server = { version = "0.4.4", path = "../server", features = ["axum", "duckdb"] }
36+
stac-validate = { version = "0.6.3", path = "../validate" }
3737
tokio = { workspace = true, features = [
3838
"macros",
3939
"io-std",

crates/core/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.16.1](https://github.com/stac-utils/rustac/compare/stac-v0.16.0...stac-v0.16.1) - 2026-01-20
8+
9+
### Added
10+
11+
- dictionary-encode repeated string fields ([#937](https://github.com/stac-utils/rustac/pull/937))
12+
713
## [0.16.0](https://github.com/stac-utils/rustac/compare/stac-v0.15.1...stac-v0.16.0) - 2026-01-05
814

915
### 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.16.0"
4+
version = "0.16.1"
55
keywords = ["geospatial", "stac", "metadata", "geo"]
66
authors.workspace = true
77
categories.workspace = true

crates/duckdb/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.3.3](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.2...stac-duckdb-v0.3.3) - 2026-01-20
8+
9+
### Other
10+
11+
- updated the following local packages: stac
12+
713
## [0.3.2](https://github.com/stac-utils/rustac/compare/stac-duckdb-v0.3.1...stac-duckdb-v0.3.2) - 2026-01-05
814

915
### 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.2"
4+
version = "0.3.3"
55
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
66
authors.workspace = true
77
edition.workspace = true
@@ -27,7 +27,7 @@ geojson.workspace = true
2727
getrandom.workspace = true
2828
log.workspace = true
2929
serde_json.workspace = true
30-
stac = { version = "0.16.0", path = "../core", features = ["geoarrow", "geo"] }
30+
stac = { version = "0.16.1", path = "../core", features = ["geoarrow", "geo"] }
3131
thiserror.workspace = true
3232

3333
[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.5](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.4...stac-extensions-v0.1.5) - 2026-01-20
8+
9+
### Other
10+
11+
- updated the following local packages: stac
12+
713
## [0.1.4](https://github.com/stac-utils/rustac/compare/stac-extensions-v0.1.3...stac-extensions-v0.1.4) - 2026-01-05
814

915
### Other

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.4"
4+
version = "0.1.5"
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.16.0", path = "../core" }
19+
stac = { version = "0.16.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.3](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.2...stac-io-v0.2.3) - 2026-01-20
8+
9+
### Other
10+
11+
- update Cargo.toml dependencies
12+
713
## [0.2.2](https://github.com/stac-utils/rustac/compare/stac-io-v0.2.1...stac-io-v0.2.2) - 2026-01-05
814

915
### Fixed

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.2"
3+
version = "0.2.3"
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.16.0", path = "../core" }
34+
stac = { version = "0.16.1", path = "../core" }
3535
thiserror.workspace = true
3636
tokio.workspace = true
3737
tracing.workspace = true

0 commit comments

Comments
 (0)