Skip to content

Commit c7eb9bc

Browse files
committed
chore(rust): Release 0.27.1
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 4806e5c commit c7eb9bc

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.27.1] - 2024-12-24
6+
57
### Added
68

79
- Implement `ExactSizeIterator` for `PrimitiveTypesBitMapIterator`.
@@ -758,7 +760,8 @@ Old names are retained for backward compatibility but will be removed in a futur
758760

759761
- Initial public release
760762

761-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.0...HEAD
763+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.1...HEAD
764+
[0.27.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.27.0...rust-v0.27.1
762765
[0.27.0]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.2...rust-v0.27.0
763766
[0.26.2]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.1...rust-v0.26.2
764767
[0.26.1]: https://github.com/Stranger6667/jsonschema/compare/rust-v0.26.0...rust-v0.26.1

crates/jsonschema-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license.workspace = true
1313

1414
[dependencies]
1515
clap = { version = "4.5", features = ["derive"] }
16-
jsonschema = { version = "0.27.0", path = "../jsonschema/" }
16+
jsonschema = { version = "0.27.1", path = "../jsonschema/" }
1717
serde_json.workspace = true
1818

1919
[[bin]]

crates/jsonschema-referencing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "referencing"
3-
version = "0.27.0"
3+
version = "0.27.1"
44
description = "An implementation-agnostic JSON reference resolution library for Rust."
55
readme = "README.md"
66
rust-version.workspace = true

crates/jsonschema/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema"
3-
version = "0.27.0"
3+
version = "0.27.1"
44
description = "JSON schema validaton library"
55
keywords = ["jsonschema", "validation"]
66
categories = ["web-programming"]
@@ -36,7 +36,7 @@ reqwest = { version = "0.12", features = [
3636
"blocking",
3737
"json",
3838
], default-features = false, optional = true }
39-
referencing = { version = "0.27.0", path = "../jsonschema-referencing" }
39+
referencing = { version = "0.27.1", path = "../jsonschema-referencing" }
4040
serde.workspace = true
4141
serde_json.workspace = true
4242
uuid-simd = "0.8"

0 commit comments

Comments
 (0)