Skip to content

Commit b895024

Browse files
committed
chore(ruby): Release 0.46.2
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent a8950ad commit b895024

6 files changed

Lines changed: 16 additions & 13 deletions

File tree

crates/jsonschema-rb/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.46.2] - 2026-04-20
6+
57
### Fixed
68

79
- `required` not enforced when `additionalProperties` is a schema object and `required` lists exactly 2 keys.
@@ -96,7 +98,8 @@
9698

9799
- Initial public release
98100

99-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.1...HEAD
101+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.2...HEAD
102+
[0.46.2]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.1...ruby-v0.46.2
100103
[0.46.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.0...ruby-v0.46.1
101104
[0.46.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.1...ruby-v0.46.0
102105
[0.45.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.0...ruby-v0.45.1

crates/jsonschema-rb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-rb"
3-
version = "0.46.1"
3+
version = "0.46.2"
44
edition = "2021"
55
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
66
license = "MIT"
@@ -13,7 +13,7 @@ publish = false
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
jsonschema = { version = "0.46.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
16+
jsonschema = { version = "0.46.2", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
1717
magnus = { version = "0.8", features = ["rb-sys"] }
1818
rb-sys = "0.9"
1919
serde = { workspace = true }

crates/jsonschema-rb/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
jsonschema_rs (0.46.1)
4+
jsonschema_rs (0.46.2)
55
bigdecimal (>= 3.1, < 5)
66
rb_sys (~> 0.9.124)
77

crates/jsonschema-rb/ext/jsonschema/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/jsonschema-rb/ext/jsonschema/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonschema-rb-ext"
3-
version = "0.46.1"
3+
version = "0.46.2"
44
edition = "2021"
55
publish = false
66

@@ -10,10 +10,10 @@ name = "jsonschema_rb"
1010
path = "../../src/lib.rs"
1111

1212
[dependencies]
13-
jsonschema = { version = "0.46.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
13+
jsonschema = { version = "0.46.2", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
1414
magnus = { version = "0.8", features = ["rb-sys"] }
1515
rb-sys = "0.9"
16-
referencing = "0.46.1"
16+
referencing = "0.46.2"
1717
serde = { version = "1", features = ["derive"] }
1818
serde_json = { version = "1", features = ["arbitrary_precision"] }
1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module JSONSchema
4-
VERSION = "0.46.1"
4+
VERSION = "0.46.2"
55
end

0 commit comments

Comments
 (0)