Skip to content

Commit

Permalink
chore(rust): Release 0.28.2
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
  • Loading branch information
Stranger6667 committed Jan 22, 2025
1 parent 615fa1e commit 7c59034
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,8 @@

## [Unreleased]

## [0.28.2] - 2025-01-22

### Fixed

- Resolving external references that nested inside local references. [#671](https://github.com/Stranger6667/jsonschema/issues/671)
@@ -784,7 +786,8 @@ Old names are retained for backward compatibility but will be removed in a futur

- Initial public release

[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.1...HEAD
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.2...HEAD
[0.28.2]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.1...rust-v0.28.2
[0.28.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.28.0...rust-v0.28.1
[0.28.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.1...rust-v0.28.0
[0.27.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.0...rust-v0.27.1
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.28.1"
version = "0.28.2"
description = "A command line tool for JSON Schema validation."
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
@@ -13,7 +13,7 @@ license.workspace = true

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

[[bin]]
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.28.1"
version = "0.28.2"
description = "An implementation-agnostic JSON reference resolution library for Rust."
readme = "README.md"
rust-version.workspace = true
2 changes: 1 addition & 1 deletion crates/jsonschema-referencing/tests/suite
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.28.1"
version = "0.28.2"
description = "JSON schema validaton library"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
@@ -36,7 +36,7 @@ reqwest = { version = "0.12", features = [
"blocking",
"json",
], default-features = false, optional = true }
referencing = { version = "0.28.1", path = "../jsonschema-referencing" }
referencing = { version = "0.28.2", path = "../jsonschema-referencing" }
serde.workspace = true
serde_json.workspace = true
uuid-simd = "0.8"

0 comments on commit 7c59034

Please sign in to comment.