Skip to content

Commit 5f9911b

Browse files
authored
release: stac-validate v0.5.0 (#800)
1 parent b1ae6c6 commit 5f9911b

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ geojson = "0.24.1"
6565
getrandom = { version = "0.3.3", features = ["wasm_js"] }
6666
http = "1.1"
6767
indexmap = { version = "2.10.0", features = ["serde"] }
68-
jsonschema = { version = "0.33.0", default-features = false, features = ["resolve-async"] }
68+
jsonschema = { version = "0.33.0", default-features = false, features = [
69+
"resolve-async",
70+
] }
6971
libduckdb-sys = "1.3.0"
7072
log = "0.4.25"
7173
mime = "0.3.17"
@@ -90,7 +92,7 @@ stac-duckdb = { version = "0.2.0", path = "crates/duckdb" }
9092
stac-extensions = { version = "0.1.0", path = "crates/extensions" }
9193
stac-io = { version = "0.1.0", path = "crates/io" }
9294
stac-server = { version = "0.3.2", path = "crates/server" }
93-
stac-validate = { version = "0.4.0", path = "crates/validate" }
95+
stac-validate = { version = "0.5.0", path = "crates/validate" }
9496
syn = "2.0"
9597
tempfile = "3.16"
9698
thiserror = "2.0"

crates/validate/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2025-09-08
10+
11+
### Changed
12+
13+
- Validation is now async ([#798](https://github.com/stac-utils/rustac/pull/798))
14+
915
## [0.4.0] - 2025-07-10
1016

1117
First release with a changelog.
1218

13-
[unreleased]: https://github.com/stac-utils/rustac/compare/stac-validate-v0.4.0...main
19+
[unreleased]: https://github.com/stac-utils/rustac/compare/stac-validate-v0.5.0...main
20+
[0.5.0]: https://github.com/stac-utils/rustac/compare/stac-validate-v0.4.0...stac-validate-v0.5.0
1421
[0.4.0]: https://github.com/stac-utils/rustac/releases/tag/stac-validate-v0.4.0
1522

1623
<!-- markdownlint-disable-file MD024 -->

crates/validate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stac-validate"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
readme = "README.md"
55
description = "json-schema validation for the Rust implementation of the STAC specification"
66
authors.workspace = true

0 commit comments

Comments
 (0)