Skip to content

Commit

Permalink
chore(rust): Release 0.23.0
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Dygalo <[email protected]>
  • Loading branch information
Stranger6667 committed Oct 12, 2024
1 parent ad1b481 commit b24430a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.23.0] - 2024-10-12

### Added

- Partial support for `unevaluatedItems`, excluding references.
Expand Down Expand Up @@ -652,7 +654,8 @@ Old names are retained for backward compatibility but will be removed in a futur

- Initial public release

[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.3...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.23.0...HEAD
[0.23.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.3...rust-v0.23.0
[0.22.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.2...rust-v0.22.3
[0.22.2]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.1...rust-v0.22.2
[0.22.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.0...rust-v0.22.1
Expand Down
4 changes: 2 additions & 2 deletions crates/jsonschema-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonschema-cli"
version = "0.22.3"
version = "0.23.0"
description = "A command line tool for JSON Schema validation."
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
Expand All @@ -13,7 +13,7 @@ license.workspace = true

[dependencies]
clap = { version = "4.5", features = ["derive"] }
jsonschema = { version = "0.22.3", path = "../jsonschema/" }
jsonschema = { version = "0.23.0", path = "../jsonschema/" }
serde_json.workspace = true

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion crates/jsonschema-referencing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "referencing"
version = "0.22.3"
version = "0.23.0"
description = "An implementation-agnostic JSON reference resolution library for Rust."
readme = "README.md"
rust-version.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/jsonschema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonschema"
version = "0.22.3"
version = "0.23.0"
description = "JSON schema validaton library"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
Expand Down Expand Up @@ -42,7 +42,7 @@ reqwest = { version = "0.12", features = [
"blocking",
"json",
], default-features = false, optional = true }
referencing = { version = "0.22.3", path = "../jsonschema-referencing" }
referencing = { version = "0.23.0", path = "../jsonschema-referencing" }
serde.workspace = true
serde_json.workspace = true
url.workspace = true
Expand Down

0 comments on commit b24430a

Please sign in to comment.