Skip to content

Commit c594c9d

Browse files
committed
chore(rust): Release 0.30.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent f4f1d7c commit c594c9d

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.30.0] - 2025-04-16
6+
57
### Added
68

79
- `JsonType` and `JsonTypeSet`.
@@ -911,7 +913,8 @@ Old names are retained for backward compatibility but will be removed in a futur
911913

912914
- Initial public release
913915

914-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.29.1...HEAD
916+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.30.0...HEAD
917+
[0.30.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.29.1...rust-v0.30.0
915918
[0.29.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.29.0...rust-v0.29.1
916919
[0.29.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.3...rust-v0.29.0
917920
[0.28.3]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.2...rust-v0.28.3

crates/jsonschema-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-cli"
3-
version = "0.29.1"
3+
version = "0.30.0"
44
description = "A command line tool for JSON Schema validation."
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -13,9 +13,9 @@ license.workspace = true
1313

1414
[dependencies]
1515
clap = { version = "4.5", features = ["derive"] }
16-
jsonschema = { version = "0.29.1", path = "../jsonschema/" }
16+
jsonschema = { version = "0.30.0", path = "../jsonschema/" }
1717
percent-encoding = "2.3"
18-
referencing = { version = "0.29.1", path = "../jsonschema-referencing" }
18+
referencing = { version = "0.30.0", path = "../jsonschema-referencing" }
1919
serde_json.workspace = true
2020

2121
[[bin]]

crates/jsonschema-referencing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "referencing"
3-
version = "0.29.1"
3+
version = "0.30.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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema"
3-
version = "0.29.1"
3+
version = "0.30.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.29.1", path = "../jsonschema-referencing" }
40+
referencing = { version = "0.30.0", path = "../jsonschema-referencing" }
4141
serde.workspace = true
4242
serde_json.workspace = true
4343
uuid-simd = "0.8"

0 commit comments

Comments
 (0)