Skip to content

Commit

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

## [Unreleased]

## [0.21.0] - 2024-09-29

**Important:** This release brings a complete rework of reference resolving which deprecates some older APIs.
While backward compatibility is maintained for now, users are encouraged to update their code. See the [Migration Guide](MIGRATION.md) for details on transitioning to the new API.

Expand Down Expand Up @@ -574,8 +576,9 @@ 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.20.0...HEAD
[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.20.0
[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.21.0...HEAD
[0.21.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...rust-v0.21.0
[0.20.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.1...rust-v0.20.0
[0.19.1]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.19.0...rust-v0.19.1
[0.19.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.3...rust-v0.19.0
[0.18.3]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.18.2...rust-v0.18.3
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.20.0"
version = "0.21.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.20.0", path = "../jsonschema/" }
jsonschema = { version = "0.21.0", path = "../jsonschema/" }
serde_json.workspace = true

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion crates/jsonschema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonschema"
version = "0.20.0"
version = "0.21.0"
description = "JSON schema validaton library"
keywords = ["jsonschema", "validation"]
categories = ["web-programming"]
Expand Down

0 comments on commit 43da4c4

Please sign in to comment.