Skip to content

Commit

Permalink
Bump jsonschema from 0.17.1 to 0.18.0 (#1643)
Browse files Browse the repository at this point in the history
* Bump jsonschema from 0.17.1 to 0.18.0

Bumps [jsonschema](https://github.com/Stranger6667/jsonschema-rs) from 0.17.1 to 0.18.0.
- [Release notes](https://github.com/Stranger6667/jsonschema-rs/releases)
- [Changelog](https://github.com/Stranger6667/jsonschema-rs/blob/master/CHANGELOG.md)
- [Commits](Stranger6667/jsonschema@rust-v0.17.1...rust-v0.18.0)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Jones <[email protected]>
  • Loading branch information
dependabot[bot] and ascjones authored May 8, 2024
1 parent 30c6e1e commit 1b5df39
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 51 deletions.
69 changes: 20 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/build/src/util/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub fn create_executable(path: &Path, content: &str) -> MockGuard {
let mut guard = MockGuard(path.to_path_buf());
let mut file = std::fs::File::create(path).unwrap();
let path = path.canonicalize().unwrap();
guard.0 = path.clone();
guard.0.clone_from(&path);
file.write_all(content.as_bytes())
.expect("writing of executable failed");
std::fs::set_permissions(&path, std::fs::Permissions::from_mode(0o777))
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ serde_json = "1.0.116"
serde = { version = "1.0.200", default-features = false, features = ["derive"] }
url = { version = "2.5.0", features = ["serde"] }
semver = "1.0"
jsonschema = "0.17"
jsonschema = "0.18"
schemars = "0.8"
ink_metadata = "5.0.0"
ink_env = "5.0.0"
Expand Down

0 comments on commit 1b5df39

Please sign in to comment.