diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bf150df0c..067c36f6e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## Version 4.3.0 + +This release is to fix compatibility of `ink_e2e` with newer (> 1.69) versions of Rust, +which produce `signext` instructions, and older versions of `pallet_contracts` which do +not yet support these instructions. + +- Backport use of `contract-build` to `3.2.0` to include `signext` lowering, and update +`subxt` to remove incompatible `wasmi-instrument` transient dependency ‒ [#1884](https://github.com/paritytech/ink/pull/1884) + ## Version 4.2.1 This release contains a low-severity security related fix. Users of the `4.x` series of diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index e4513aec72..2c76c0a1c2 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/e2e/Cargo.toml b/crates/e2e/Cargo.toml index 2c8ce9c614..cd99321562 100644 --- a/crates/e2e/Cargo.toml +++ b/crates/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] 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.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" } +ink_e2e_macro = { version = "4.3.0", path = "./macro" } +ink = { version = "4.3.0", path = "../ink" } +ink_env = { version = "4.3.0", path = "../env" } +ink_primitives = { version = "4.3.0", path = "../primitives" } funty = "2.0.0" impl-serde = { version = "0.3.1", default-features = false } diff --git a/crates/e2e/macro/Cargo.toml b/crates/e2e/macro/Cargo.toml index 432372fa7b..f1e2125bf5 100644 --- a/crates/e2e/macro/Cargo.toml +++ b/crates/e2e/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e_macro" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" @@ -19,7 +19,7 @@ name = "ink_e2e_macro" proc-macro = true [dependencies] -ink_ir = { version = "4.2.1", path = "../../ink/ir" } +ink_ir = { version = "4.3.0", path = "../../ink/ir" } cargo_metadata = "0.15.3" contract-build = "3.2.0" derive_more = "0.99.17" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index 011e1ff129..a55feacdbb 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Michael Müller "] edition = "2021" @@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_primitives = { version = "4.2.1", path = "../../crates/primitives", default-features = false } +ink_primitives = { version = "4.3.0", 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"] } diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index 8757e74915..8d3ada808e 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] 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.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 } +ink_allocator = { version = "4.3.0", path = "../allocator", default-features = false } +ink_storage_traits = { version = "4.3.0", path = "../storage/traits", default-features = false } +ink_prelude = { version = "4.3.0", path = "../prelude", default-features = false } +ink_primitives = { version = "4.3.0", 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.1", path = "../engine/", optional = true } +ink_engine = { version = "4.3.0", path = "../engine/", optional = true } # Hashes for the off-chain environment. sha2 = { version = "0.10", optional = true } diff --git a/crates/ink/Cargo.toml b/crates/ink/Cargo.toml index 15f673d349..be864aeee5 100644 --- a/crates/ink/Cargo.toml +++ b/crates/ink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] 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.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 } +ink_env = { version = "4.3.0", path = "../env", default-features = false } +ink_storage = { version = "4.3.0", path = "../storage", default-features = false } +ink_primitives = { version = "4.3.0", path = "../primitives", default-features = false } +ink_metadata = { version = "4.3.0", path = "../metadata", default-features = false, optional = true } +ink_prelude = { version = "4.3.0", path = "../prelude", default-features = false } +ink_macro = { version = "4.3.0", 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"] } diff --git a/crates/ink/codegen/Cargo.toml b/crates/ink/codegen/Cargo.toml index a41109a66c..15de9d3370 100644 --- a/crates/ink/codegen/Cargo.toml +++ b/crates/ink/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_codegen" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -18,8 +18,8 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] name = "ink_codegen" [dependencies] -ink_primitives = { version = "4.2.1", path = "../../primitives" } -ir = { version = "4.2.1", package = "ink_ir", path = "../ir", default-features = false } +ink_primitives = { version = "4.3.0", path = "../../primitives" } +ir = { version = "4.3.0", package = "ink_ir", path = "../ir", default-features = false } quote = "1" syn = { version = "2.0", features = ["parsing", "full", "extra-traits"] } proc-macro2 = "1.0" diff --git a/crates/ink/ir/Cargo.toml b/crates/ink/ir/Cargo.toml index 0497de0b9d..c8e5cd2816 100644 --- a/crates/ink/ir/Cargo.toml +++ b/crates/ink/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_ir" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/ink/macro/Cargo.toml b/crates/ink/macro/Cargo.toml index b98e7dc8cd..b1c4df6bef 100644 --- a/crates/ink/macro/Cargo.toml +++ b/crates/ink/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_macro" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,9 +15,9 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -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 } +ink_ir = { version = "4.3.0", path = "../ir", default-features = false } +ink_codegen = { version = "4.3.0", path = "../codegen", default-features = false } +ink_primitives = { version = "4.3.0", path = "../../primitives/", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } syn = "2" diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index b196246f62..addeba5f8f 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,8 +15,8 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_prelude = { version = "4.2.1", path = "../prelude/", default-features = false } -ink_primitives = { version = "4.2.1", path = "../primitives/", default-features = false } +ink_prelude = { version = "4.3.0", path = "../prelude/", default-features = false } +ink_primitives = { version = "4.3.0", path = "../primitives/", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } impl-serde = "0.4.0" diff --git a/crates/prelude/Cargo.toml b/crates/prelude/Cargo.toml index 9a165b36c6..e0d1cc32bb 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 5ad52bd57a..4dda26c722 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] 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.1", path = "../prelude/", default-features = false } +ink_prelude = { version = "4.3.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } scale-decode = { version = "0.9.0", default-features = false, features = ["derive"], optional = true } scale-encode = { version = "0.5.0", default-features = false, features = ["derive"], optional = true } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index f13bcbaed2..93a8eebeea 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_env = { version = "4.2.1", path = "../env/", default-features = false } -ink_metadata = { version = "4.2.1", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.2.1", path = "../primitives/", default-features = false } -ink_storage_traits = { version = "4.2.1", path = "traits", default-features = false } -ink_prelude = { version = "4.2.1", path = "../prelude/", default-features = false } +ink_env = { version = "4.3.0", path = "../env/", default-features = false } +ink_metadata = { version = "4.3.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.3.0", path = "../primitives/", default-features = false } +ink_storage_traits = { version = "4.3.0", path = "traits", default-features = false } +ink_prelude = { version = "4.3.0", path = "../prelude/", 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"] } diff --git a/crates/storage/traits/Cargo.toml b/crates/storage/traits/Cargo.toml index 6ddb3802f1..5020cc9f96 100644 --- a/crates/storage/traits/Cargo.toml +++ b/crates/storage/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage_traits" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" @@ -15,9 +15,9 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_metadata = { version = "4.2.1", path = "../../metadata", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.2.1", path = "../../primitives", default-features = false } -ink_prelude = { version = "4.2.1", path = "../../prelude", default-features = false } +ink_metadata = { version = "4.3.0", path = "../../metadata", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.3.0", path = "../../primitives", default-features = false } +ink_prelude = { version = "4.3.0", path = "../../prelude", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } scale-info = { version = "2.5", default-features = false, features = ["derive"], optional = true } diff --git a/integration-tests/basic_contract_caller/Cargo.toml b/integration-tests/basic_contract_caller/Cargo.toml index 00a55af11b..977b899faf 100755 --- a/integration-tests/basic_contract_caller/Cargo.toml +++ b/integration-tests/basic_contract_caller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "basic_contract_caller" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/basic_contract_caller/other_contract/Cargo.toml b/integration-tests/basic_contract_caller/other_contract/Cargo.toml index f6ee2346e2..45e8a8279a 100755 --- a/integration-tests/basic_contract_caller/other_contract/Cargo.toml +++ b/integration-tests/basic_contract_caller/other_contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "other_contract" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/contract-terminate/Cargo.toml b/integration-tests/contract-terminate/Cargo.toml index e4de319328..162d9441e7 100644 --- a/integration-tests/contract-terminate/Cargo.toml +++ b/integration-tests/contract-terminate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_terminate" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/contract-transfer/Cargo.toml b/integration-tests/contract-transfer/Cargo.toml index 3cadc50244..29d7e6eef1 100644 --- a/integration-tests/contract-transfer/Cargo.toml +++ b/integration-tests/contract-transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_transfer" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/custom-environment/Cargo.toml b/integration-tests/custom-environment/Cargo.toml index afb21789aa..ef7641c2bd 100644 --- a/integration-tests/custom-environment/Cargo.toml +++ b/integration-tests/custom-environment/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom-environment" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/custom_allocator/Cargo.toml b/integration-tests/custom_allocator/Cargo.toml index dee23eb2c6..ef62f8cf89 100755 --- a/integration-tests/custom_allocator/Cargo.toml +++ b/integration-tests/custom_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "custom_allocator" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/dns/Cargo.toml b/integration-tests/dns/Cargo.toml index a5f82aabbc..eaaa3a8828 100644 --- a/integration-tests/dns/Cargo.toml +++ b/integration-tests/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/e2e-call-runtime/Cargo.toml b/integration-tests/e2e-call-runtime/Cargo.toml index f23555fc09..e427e8143e 100644 --- a/integration-tests/e2e-call-runtime/Cargo.toml +++ b/integration-tests/e2e-call-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "e2e_call_runtime" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc1155/Cargo.toml b/integration-tests/erc1155/Cargo.toml index 43a101d494..686d907c8e 100644 --- a/integration-tests/erc1155/Cargo.toml +++ b/integration-tests/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc20/Cargo.toml b/integration-tests/erc20/Cargo.toml index 47f1d31e87..848df719f2 100644 --- a/integration-tests/erc20/Cargo.toml +++ b/integration-tests/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc721/Cargo.toml b/integration-tests/erc721/Cargo.toml index b273b27855..864506406b 100644 --- a/integration-tests/erc721/Cargo.toml +++ b/integration-tests/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/flipper/Cargo.toml b/integration-tests/flipper/Cargo.toml index c7d950331b..3aece6e35e 100644 --- a/integration-tests/flipper/Cargo.toml +++ b/integration-tests/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/incrementer/Cargo.toml b/integration-tests/incrementer/Cargo.toml index 4470856ccb..664f091e96 100644 --- a/integration-tests/incrementer/Cargo.toml +++ b/integration-tests/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/lang-err-integration-tests/call-builder-delegate/Cargo.toml b/integration-tests/lang-err-integration-tests/call-builder-delegate/Cargo.toml index ddceaad14e..84a2315b4d 100755 --- a/integration-tests/lang-err-integration-tests/call-builder-delegate/Cargo.toml +++ b/integration-tests/lang-err-integration-tests/call-builder-delegate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "call_builder_delegate" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/lang-err-integration-tests/call-builder/Cargo.toml b/integration-tests/lang-err-integration-tests/call-builder/Cargo.toml index cc18b226de..d1c06848bf 100755 --- a/integration-tests/lang-err-integration-tests/call-builder/Cargo.toml +++ b/integration-tests/lang-err-integration-tests/call-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "call_builder" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/lang-err-integration-tests/constructors-return-value/Cargo.toml b/integration-tests/lang-err-integration-tests/constructors-return-value/Cargo.toml index d1897bd67b..238ae3ab4b 100644 --- a/integration-tests/lang-err-integration-tests/constructors-return-value/Cargo.toml +++ b/integration-tests/lang-err-integration-tests/constructors-return-value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "constructors_return_value" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/lang-err-integration-tests/contract-ref/Cargo.toml b/integration-tests/lang-err-integration-tests/contract-ref/Cargo.toml index 7985907c39..80e38065cc 100755 --- a/integration-tests/lang-err-integration-tests/contract-ref/Cargo.toml +++ b/integration-tests/lang-err-integration-tests/contract-ref/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_ref" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/lang-err-integration-tests/integration-flipper/Cargo.toml b/integration-tests/lang-err-integration-tests/integration-flipper/Cargo.toml index e9c2b6b2cd..75a9046488 100644 --- a/integration-tests/lang-err-integration-tests/integration-flipper/Cargo.toml +++ b/integration-tests/lang-err-integration-tests/integration-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration_flipper" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/mapping_integration_tests/Cargo.toml b/integration-tests/mapping_integration_tests/Cargo.toml index 875cf170b6..52dfda9309 100755 --- a/integration-tests/mapping_integration_tests/Cargo.toml +++ b/integration-tests/mapping_integration_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mapping-integration-tests" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/mother/Cargo.toml b/integration-tests/mother/Cargo.toml index caeba56ff7..a74de0576f 100755 --- a/integration-tests/mother/Cargo.toml +++ b/integration-tests/mother/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mother" description = "Mother of all contracts" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/multi_contract_caller/Cargo.toml b/integration-tests/multi_contract_caller/Cargo.toml index b8b1246fb3..7adee40e46 100644 --- a/integration-tests/multi_contract_caller/Cargo.toml +++ b/integration-tests/multi_contract_caller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multi_contract_caller" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/multi_contract_caller/accumulator/Cargo.toml b/integration-tests/multi_contract_caller/accumulator/Cargo.toml index c15cc6e6e8..0e2c783aba 100644 --- a/integration-tests/multi_contract_caller/accumulator/Cargo.toml +++ b/integration-tests/multi_contract_caller/accumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accumulator" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/multi_contract_caller/adder/Cargo.toml b/integration-tests/multi_contract_caller/adder/Cargo.toml index 238da33f28..72e23ff6f1 100644 --- a/integration-tests/multi_contract_caller/adder/Cargo.toml +++ b/integration-tests/multi_contract_caller/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/multi_contract_caller/subber/Cargo.toml b/integration-tests/multi_contract_caller/subber/Cargo.toml index 70af014773..9098386995 100644 --- a/integration-tests/multi_contract_caller/subber/Cargo.toml +++ b/integration-tests/multi_contract_caller/subber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subber" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/multisig/Cargo.toml b/integration-tests/multisig/Cargo.toml index 6a210db4ee..ec4b9edd2c 100755 --- a/integration-tests/multisig/Cargo.toml +++ b/integration-tests/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/payment-channel/Cargo.toml b/integration-tests/payment-channel/Cargo.toml index 7b8e876b45..88ec4b1f84 100755 --- a/integration-tests/payment-channel/Cargo.toml +++ b/integration-tests/payment-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payment_channel" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/psp22-extension/Cargo.toml b/integration-tests/psp22-extension/Cargo.toml index 5cddf38540..6b59bea4ab 100755 --- a/integration-tests/psp22-extension/Cargo.toml +++ b/integration-tests/psp22-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psp22_extension" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/rand-extension/Cargo.toml b/integration-tests/rand-extension/Cargo.toml index acbdc47a5e..f34db03f37 100755 --- a/integration-tests/rand-extension/Cargo.toml +++ b/integration-tests/rand-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_extension" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/set_code_hash/Cargo.toml b/integration-tests/set_code_hash/Cargo.toml index 773fd3b5e7..030cf9697e 100644 --- a/integration-tests/set_code_hash/Cargo.toml +++ b/integration-tests/set_code_hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/set_code_hash/updated_incrementer/Cargo.toml b/integration-tests/set_code_hash/updated_incrementer/Cargo.toml index 97023a4bc3..24094066c1 100644 --- a/integration-tests/set_code_hash/updated_incrementer/Cargo.toml +++ b/integration-tests/set_code_hash/updated_incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "updated_incrementer" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/trait-erc20/Cargo.toml b/integration-tests/trait-erc20/Cargo.toml index e8bd6fb5d3..18916d5124 100644 --- a/integration-tests/trait-erc20/Cargo.toml +++ b/integration-tests/trait-erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_erc20" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/trait-flipper/Cargo.toml b/integration-tests/trait-flipper/Cargo.toml index c4a7ceb9bf..d06b87d0f7 100644 --- a/integration-tests/trait-flipper/Cargo.toml +++ b/integration-tests/trait-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_flipper" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/trait-incrementer/Cargo.toml b/integration-tests/trait-incrementer/Cargo.toml index c7aa8363a8..534dbbdd6e 100644 --- a/integration-tests/trait-incrementer/Cargo.toml +++ b/integration-tests/trait-incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait-incrementer" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/trait-incrementer/traits/Cargo.toml b/integration-tests/trait-incrementer/traits/Cargo.toml index 45ef2d58f0..18e540385c 100644 --- a/integration-tests/trait-incrementer/traits/Cargo.toml +++ b/integration-tests/trait-incrementer/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "traits" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/linting/Cargo.toml b/linting/Cargo.toml index f8a99cf33e..6001c89c09 100644 --- a/linting/Cargo.toml +++ b/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_linting" -version = "4.2.1" +version = "4.3.0" authors = ["Parity Technologies "] edition = "2021" publish = false