Skip to content

Commit fa2fcdf

Browse files
committed
chore: Release
1 parent fc0fd91 commit fa2fcdf

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

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.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsoncompat"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
edition = "2024"
55
description = "JSON Schema Compatibility Checker"
66
repository = "https://github.com/ostrowr/jsoncompat"
@@ -27,8 +27,8 @@ serde = { version = "1.0.228", features = ["derive"] }
2727
# Small, zero‑dep colour library for pleasant CLI output.
2828
owo-colors = "4.3"
2929
# Our own strict Draft‑2020 implementation crate
30-
json_schema_ast = { path = "schema", version = "0.2.6" }
31-
json_schema_fuzz = { path = "fuzz", version = "0.2.6" }
30+
json_schema_ast = { path = "schema", version = "0.3.0" }
31+
json_schema_fuzz = { path = "fuzz", version = "0.3.0" }
3232
console = "0.16.3"
3333
fancy-regex = "0.17"
3434

fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_schema_fuzz"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
edition = "2024"
55
description = "JSON Schema value generator"
66
repository = "https://github.com/ostrowr/jsoncompat"
@@ -10,7 +10,7 @@ readme = "README.md"
1010
[dependencies]
1111
rand = "0.10.0"
1212
serde_json = "1.0.149"
13-
json_schema_ast = { path = "../schema", version = "0.2.6" }
13+
json_schema_ast = { path = "../schema", version = "0.3.0" }
1414
fancy-regex = "0.17"
1515
regex-syntax = "0.8.10"
1616
fake = { version = "5.1.0", features = ["chrono", "uuid"] }

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsoncompat_py"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
readme = "README.md"
55
edition = "2024"
66
publish = false # This crate is not published to crates.io; only PyPI.

schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json_schema_ast"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
edition = "2024"
55
description = "Strict JSON Schema Draft 2020-12 frontend and resolved IR"
66
repository = "https://github.com/ostrowr/jsoncompat"

wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# publish this as the *npm* package `jsoncompat` so consumers can simply
44
# `import { ... } from 'jsoncompat'`.
55
name = "jsoncompat_wasm"
6-
version = "0.2.6"
6+
version = "0.3.0"
77
edition = "2024"
88
description = "JSON Schema Compatibility Checker"
99
repository = "https://github.com/ostrowr/jsoncompat"

0 commit comments

Comments
 (0)