Skip to content

Commit

Permalink
chore(rust): Release 0.25.1
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
  • Loading branch information
Stranger6667 committed Oct 25, 2024
1 parent f305d51 commit c5fc57e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.25.1] - 2024-10-25

### Fixed

- Re-export `referencing::Error` as `ReferencingError`. [#614](https://github.com/Stranger6667/jsonschema-rs/issues/614)
Expand Down Expand Up @@ -712,7 +714,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.25.0...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.25.1...HEAD
[0.25.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.25.0...rust-v0.25.1
[0.25.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.24.3...rust-v0.25.0
[0.24.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.24.2...rust-v0.24.3
[0.24.2]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.24.1...rust-v0.24.2
Expand Down
2 changes: 1 addition & 1 deletion 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.25.0"
version = "0.25.1"
description = "A command line tool for JSON Schema validation."
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
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.25.0"
version = "0.25.1"
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.25.0"
version = "0.25.1"
description = "JSON schema validaton library"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
Expand Down Expand Up @@ -36,7 +36,7 @@ reqwest = { version = "0.12", features = [
"blocking",
"json",
], default-features = false, optional = true }
referencing = { version = "0.25.0", path = "../jsonschema-referencing" }
referencing = { version = "0.25.1", path = "../jsonschema-referencing" }
serde.workspace = true
serde_json.workspace = true
uuid-simd = "0.8"
Expand Down

0 comments on commit c5fc57e

Please sign in to comment.