-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge pull request from GHSA-853p-5678-hv8f * Handle `LangError` from `DelegateCall` * Add basic delegate E2E test * Get test working with integration flipper * Use `incrementer` for test instead * Add tests to make sure that `LangError`s can be handled * Get rid of references to the interation Flipper * Bump version numbers to `4.2.1` * Add `CHANGELOG` entry Add more info to the `CHANGELOG` * Fix doc test related to delegate call (#1809) * Mention extra `Result` return type * Try using old CI image * Bump codec version in UI tests * Add German's CHANGELOG suggestion
- Loading branch information
Showing
60 changed files
with
374 additions
and
106 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
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 = "ink_allocator" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_e2e" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,10 +15,10 @@ categories = ["no-std", "embedded"] | |
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | ||
|
||
[dependencies] | ||
ink_e2e_macro = { version = "4.2.0", path = "./macro" } | ||
ink = { version = "4.2.0", path = "../ink" } | ||
ink_env = { version = "4.2.0", path = "../env" } | ||
ink_primitives = { version = "4.2.0", path = "../primitives" } | ||
ink_e2e_macro = { version = "4.2.1", path = "./macro" } | ||
ink = { version = "4.2.1", path = "../ink" } | ||
ink_env = { version = "4.2.1", path = "../env" } | ||
ink_primitives = { version = "4.2.1", path = "../primitives" } | ||
|
||
funty = "2.0.0" | ||
impl-serde = { version = "0.3.1", 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 = "ink_e2e_macro" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -19,7 +19,7 @@ name = "ink_e2e_macro" | |
proc-macro = true | ||
|
||
[dependencies] | ||
ink_ir = { version = "4.2.0", path = "../../ink/ir" } | ||
ink_ir = { version = "4.2.1", path = "../../ink/ir" } | ||
cargo_metadata = "0.15.3" | ||
contract-build = "2.0.2" | ||
derive_more = "0.99.17" | ||
|
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 = "ink_engine" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Michael Müller <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_primitives = { version = "4.2.0", path = "../../crates/primitives", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../../crates/primitives", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
||
|
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 = "ink_env" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.68" | ||
|
@@ -16,10 +16,10 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_allocator = { version = "4.2.0", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.2.0", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.2.0", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.2.0", path = "../primitives", default-features = false } | ||
ink_allocator = { version = "4.2.1", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.2.1", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.2.1", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../primitives", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
@@ -33,7 +33,7 @@ static_assertions = "1.1" | |
rlibc = "1" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
ink_engine = { version = "4.2.0", path = "../engine/", optional = true } | ||
ink_engine = { version = "4.2.1", path = "../engine/", optional = true } | ||
|
||
# Hashes for the off-chain environment. | ||
sha2 = { version = "0.10", optional = true } | ||
|
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
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
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 = "ink" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63" | ||
|
@@ -16,12 +16,12 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "4.2.0", path = "../env", default-features = false } | ||
ink_storage = { version = "4.2.0", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.2.0", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.2.0", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.2.0", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.2.0", path = "macro", default-features = false } | ||
ink_env = { version = "4.2.1", path = "../env", default-features = false } | ||
ink_storage = { version = "4.2.1", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.2.1", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.2.1", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.2.1", path = "macro", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | ||
|
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 = "ink_codegen" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -18,8 +18,8 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | |
name = "ink_codegen" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "4.2.0", path = "../../primitives" } | ||
ir = { version = "4.2.0", package = "ink_ir", path = "../ir", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../../primitives" } | ||
ir = { version = "4.2.1", package = "ink_ir", path = "../ir", default-features = false } | ||
quote = "1" | ||
syn = { version = "2.0", features = ["parsing", "full", "extra-traits"] } | ||
proc-macro2 = "1.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 = "ink_ir" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_macro" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,9 +15,9 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_ir = { version = "4.2.0", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.2.0", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.2.0", path = "../../primitives/", default-features = false } | ||
ink_ir = { version = "4.2.1", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.2.1", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../../primitives/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
syn = "2" | ||
|
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
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 = "ink_metadata" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,8 +15,8 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "4.2.0", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.2.0", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "4.2.1", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.2.1", path = "../primitives/", default-features = false } | ||
|
||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | ||
impl-serde = "0.4.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 = "ink_prelude" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_primitives" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -16,7 +16,7 @@ include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | |
|
||
[dependencies] | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
ink_prelude = { version = "4.2.0", path = "../prelude/", default-features = false } | ||
ink_prelude = { version = "4.2.1", path = "../prelude/", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } | ||
scale-decode = { version = "0.5.0", default-features = false, features = ["derive"], optional = true } | ||
scale-encode = { version = "0.1.0", default-features = false, features = ["derive"], optional = true } | ||
|
Oops, something went wrong.
Even though it was a bugfix you changed the API in backwards incompatible way. According to semver rules, this should bump minor version, not patch.