Skip to content

Commit

Permalink
chore: Publish jsonschema-referencing too
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Dygalo <[email protected]>
  • Loading branch information
Stranger6667 committed Sep 29, 2024
1 parent 35ebeab commit 1744a1e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ jobs:

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

- run: cargo publish --dry-run -p jsonschema-referencing
- run: cargo publish --dry-run -p jsonschema
- run: cargo publish --dry-run -p jsonschema-cli

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rust-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}

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

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

- run: cargo publish --manifest-path crates/jsonschema-cli/Cargo.toml
4 changes: 3 additions & 1 deletion crates/jsonschema-referencing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "referencing"
version = "0.1.0"
version = "0.20.0"
description = "An implementation-agnostic JSON reference resolution library for Rust."
readme = "README.md"
rust-version.workspace = true
edition.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/jsonschema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ reqwest = { version = "0.12", features = [
"blocking",
"json",
], default-features = false, optional = true }
referencing = { path = "../jsonschema-referencing" }
referencing = { version = "0.20.0", path = "../jsonschema-referencing" }
serde.workspace = true
serde_json.workspace = true
time = { version = "0.3", features = ["parsing", "macros"] }
Expand Down

0 comments on commit 1744a1e

Please sign in to comment.