From f48b9819974ac4a99bafb6da038a8835728937b6 Mon Sep 17 00:00:00 2001
From: Dmitry Dygalo <dmitry@dygalo.dev>
Date: Sat, 5 Oct 2024 21:41:09 +0200
Subject: [PATCH] chore(rust): Release 0.22.3

Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
---
 CHANGELOG.md                             | 5 ++++-
 crates/jsonschema-cli/Cargo.toml         | 4 ++--
 crates/jsonschema-referencing/Cargo.toml | 2 +-
 crates/jsonschema/Cargo.toml             | 4 ++--
 4 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6437892a..2ab45e3b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## [Unreleased]
 
+## [0.22.3] - 2024-10-05
+
 ### Performance
 
 - Speedup resolving.
@@ -619,7 +621,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.2...HEAD
+[Unreleased]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.22.3...HEAD
+[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
 [0.22.0]: https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.21.0...rust-v0.22.0
diff --git a/crates/jsonschema-cli/Cargo.toml b/crates/jsonschema-cli/Cargo.toml
index 69c2c051..f6791cca 100644
--- a/crates/jsonschema-cli/Cargo.toml
+++ b/crates/jsonschema-cli/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "jsonschema-cli"
-version = "0.22.2"
+version = "0.22.3"
 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.22.2", path = "../jsonschema/" }
+jsonschema = { version = "0.22.3", path = "../jsonschema/" }
 serde_json.workspace = true
 
 [[bin]]
diff --git a/crates/jsonschema-referencing/Cargo.toml b/crates/jsonschema-referencing/Cargo.toml
index b42f1a91..01e00558 100644
--- a/crates/jsonschema-referencing/Cargo.toml
+++ b/crates/jsonschema-referencing/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "referencing"
-version = "0.22.2"
+version = "0.22.3"
 description = "An implementation-agnostic JSON reference resolution library for Rust."
 readme = "README.md"
 rust-version.workspace = true
diff --git a/crates/jsonschema/Cargo.toml b/crates/jsonschema/Cargo.toml
index ccb77a6f..b90efa96 100644
--- a/crates/jsonschema/Cargo.toml
+++ b/crates/jsonschema/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "jsonschema"
-version = "0.22.2"
+version = "0.22.3"
 description = "JSON schema validaton library"
 keywords = ["jsonschema", "validation"]
 categories = ["web-programming"]
@@ -43,7 +43,7 @@ reqwest = { version = "0.12", features = [
   "blocking",
   "json",
 ], default-features = false, optional = true }
-referencing = { version = "0.22.2", path = "../jsonschema-referencing" }
+referencing = { version = "0.22.3", path = "../jsonschema-referencing" }
 serde.workspace = true
 serde_json.workspace = true
 url.workspace = true