-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix "chain configuration not found" error (#1786) * Account for spaced and non-spaced behavior of `stringify!` * For user output: remove spaces from object path * Output the chain configuration that was searched * Apply `cargo fmt` * Add changelog entry * Switch spaces clean-up * Fix string handling * Apply `cargo fmt` * Improve comment * Improve formatting * Improve assert error message * Shorten code * Update changelog * Bump version number * Update `Cargo.lock`
- Loading branch information
Showing
10 changed files
with
73 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract-analyze" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -14,7 +14,7 @@ keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] | |
include = ["Cargo.toml", "*.rs", "LICENSE"] | ||
|
||
[dependencies] | ||
contract-metadata = { version = "4.1.1", path = "../metadata" } | ||
contract-metadata = { version = "4.1.2", path = "../metadata" } | ||
parity-wasm = { version = "0.45.0" } | ||
anyhow = "1.0.81" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract-build" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -44,7 +44,7 @@ tokio-stream = "0.1" | |
bollard = "0.16" | ||
crossterm = "0.27.0" | ||
|
||
contract-metadata = { version = "4.1.1", path = "../metadata" } | ||
contract-metadata = { version = "4.1.2", path = "../metadata" } | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
uzers = "0.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-contract" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2021" | ||
|
@@ -18,11 +18,11 @@ include = [ | |
] | ||
|
||
[dependencies] | ||
contract-build = { version = "4.1.1", path = "../build" } | ||
contract-extrinsics = { version = "4.1.1", path = "../extrinsics" } | ||
contract-transcode = { version = "4.1.1", path = "../transcode" } | ||
contract-metadata = { version = "4.1.1", path = "../metadata" } | ||
contract-analyze = { version = "4.1.1", path = "../analyze" } | ||
contract-build = { version = "4.1.2", path = "../build" } | ||
contract-extrinsics = { version = "4.1.2", path = "../extrinsics" } | ||
contract-transcode = { version = "4.1.2", path = "../transcode" } | ||
contract-metadata = { version = "4.1.2", path = "../metadata" } | ||
contract-analyze = { version = "4.1.2", path = "../analyze" } | ||
|
||
anyhow = "1.0.81" | ||
clap = { version = "4.5.4", features = ["derive", "env"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract-extrinsics" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.70" | ||
|
@@ -15,9 +15,9 @@ keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] | |
include = ["Cargo.toml", "*.rs", "LICENSE",] | ||
|
||
[dependencies] | ||
contract-build = { version = "4.1.1", path = "../build" } | ||
contract-metadata = { version = "4.1.1", path = "../metadata" } | ||
contract-transcode = { version = "4.1.1", path = "../transcode" } | ||
contract-build = { version = "4.1.2", path = "../build" } | ||
contract-metadata = { version = "4.1.2", path = "../metadata" } | ||
contract-transcode = { version = "4.1.2", path = "../transcode" } | ||
|
||
anyhow = "1.0.81" | ||
blake2 = { version = "0.10.6", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract-metadata" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
"=5.0.0-rc.1" | ||
] | ||
}, | ||
"4.1.1": { | ||
"4.1.2": { | ||
"ink": [ | ||
">=5.0.0-rc.2", | ||
"5.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract-transcode" | ||
version = "4.1.1" | ||
version = "4.1.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -20,7 +20,7 @@ path = "src/lib.rs" | |
anyhow = "1.0.81" | ||
base58 = { version = "0.2.0" } | ||
blake2 = { version = "0.10.6", default-features = false } | ||
contract-metadata = { version = "4.1.1", path = "../metadata" } | ||
contract-metadata = { version = "4.1.2", path = "../metadata" } | ||
escape8259 = "0.5.2" | ||
hex = "0.4.3" | ||
indexmap = "2.2.6" | ||
|