Skip to content

Commit 44e787f

Browse files
committed
chore(rust): Release 0.29.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 620b1b9 commit 44e787f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.29.0] - 2025-02-08
6+
57
### Breaking Changes
68

79
- All builder methods on `ValidationOptions` now take ownership of `self` instead of `&mut self`.
@@ -880,7 +882,8 @@ Old names are retained for backward compatibility but will be removed in a futur
880882

881883
- Initial public release
882884

883-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.3...HEAD
885+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.29.0...HEAD
886+
[0.29.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.3...rust-v0.29.0
884887
[0.28.3]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.2...rust-v0.28.3
885888
[0.28.2]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.1...rust-v0.28.2
886889
[0.28.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.0...rust-v0.28.1

crates/jsonschema-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-cli"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "A command line tool for JSON Schema validation."
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -13,7 +13,7 @@ license.workspace = true
1313

1414
[dependencies]
1515
clap = { version = "4.5", features = ["derive"] }
16-
jsonschema = { version = "0.28.3", path = "../jsonschema/" }
16+
jsonschema = { version = "0.29.0", path = "../jsonschema/" }
1717
serde_json.workspace = true
1818

1919
[[bin]]

crates/jsonschema-referencing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "referencing"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "An implementation-agnostic JSON reference resolution library for Rust."
55
readme = "README.md"
66
rust-version.workspace = true

crates/jsonschema/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema"
3-
version = "0.28.3"
3+
version = "0.29.0"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -37,7 +37,7 @@ reqwest = { version = "0.12", features = [
3737
"blocking",
3838
"json",
3939
], default-features = false, optional = true }
40-
referencing = { version = "0.28.3", path = "../jsonschema-referencing" }
40+
referencing = { version = "0.29.0", path = "../jsonschema-referencing" }
4141
serde.workspace = true
4242
serde_json.workspace = true
4343
uuid-simd = "0.8"

0 commit comments

Comments
 (0)