Skip to content

Commit 1744a1e

Browse files
committed
chore: Publish jsonschema-referencing too
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 35ebeab commit 1744a1e

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ jobs:
172172

173173
- run: cargo clippy --all-targets --all-features
174174

175+
- run: cargo publish --dry-run -p jsonschema-referencing
175176
- run: cargo publish --dry-run -p jsonschema
176177
- run: cargo publish --dry-run -p jsonschema-cli
177178

.github/workflows/rust-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
env:
1818
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
1919

20+
- run: cargo publish --manifest-path crates/jsonschema-referencing/Cargo.toml
21+
2022
- run: cargo publish --manifest-path crates/jsonschema/Cargo.toml
2123

2224
- run: cargo publish --manifest-path crates/jsonschema-cli/Cargo.toml

crates/jsonschema-referencing/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
22
name = "referencing"
3-
version = "0.1.0"
3+
version = "0.20.0"
4+
description = "An implementation-agnostic JSON reference resolution library for Rust."
5+
readme = "README.md"
46
rust-version.workspace = true
57
edition.workspace = true
68
authors.workspace = true

crates/jsonschema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ reqwest = { version = "0.12", features = [
4141
"blocking",
4242
"json",
4343
], default-features = false, optional = true }
44-
referencing = { path = "../jsonschema-referencing" }
44+
referencing = { version = "0.20.0", path = "../jsonschema-referencing" }
4545
serde.workspace = true
4646
serde_json.workspace = true
4747
time = { version = "0.3", features = ["parsing", "macros"] }

0 commit comments

Comments
 (0)