Skip to content

Commit e8f95fe

Browse files
committed
chore(rust): Release 0.34.0
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 619dde9 commit e8f95fe

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.34.0] - 2025-11-14
6+
57
### Changed
68

79
- **BREAKING**: `BasicOutput` and `Annotations` no longer have lifetime parameters. Update type annotations from `BasicOutput<'a>` to `BasicOutput` and `Annotations<'a>` to `Annotations`.
@@ -981,6 +983,7 @@ Old names are retained for backward compatibility but will be removed in a futur
981983
- Initial public release
982984

983985
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.33.0...HEAD
986+
[0.34.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.33.0...rust-v0.34.0
984987
[0.33.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.32.1...rust-v0.33.0
985988
[0.32.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.32.0...rust-v0.32.1
986989
[0.32.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.31.0...rust-v0.32.0

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.33.0"
3+
version = "0.34.0"
44
description = "A command line tool for JSON Schema validation."
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -17,9 +17,9 @@ path = "src/main.rs"
1717

1818
[dependencies]
1919
clap = { version = "4.5", features = ["derive"] }
20-
jsonschema = { version = "0.33.0", path = "../jsonschema/" }
20+
jsonschema = { version = "0.34.0", path = "../jsonschema/" }
2121
percent-encoding = "2.3"
22-
referencing = { version = "0.33.0", path = "../jsonschema-referencing" }
22+
referencing = { version = "0.34.0", path = "../jsonschema-referencing" }
2323
serde_json.workspace = true
2424

2525
[dev-dependencies]

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.33.0"
3+
version = "0.34.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.33.0"
3+
version = "0.34.0"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -49,7 +49,7 @@ itoa = "1"
4949
num-cmp = "0.1"
5050
num-traits = "0.2.19"
5151
percent-encoding = "2.3"
52-
referencing = { version = "0.33.0", path = "../jsonschema-referencing" }
52+
referencing = { version = "0.34.0", path = "../jsonschema-referencing" }
5353
regex = "1.11.1"
5454
regex-syntax = "0.8.5"
5555
serde.workspace = true

0 commit comments

Comments
 (0)