diff --git a/CHANGELOG.md b/CHANGELOG.md index 213c1c0eb32..81852b580fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## Version 4.2.0 + ### Added -- Persist `Environment` in metadata - [#1741](https://github.com/paritytech/ink/pull/1741) +- Persist `Environment` in metadata ‒ [#1741](https://github.com/paritytech/ink/pull/1741) +- Added possibility for `runtime_call` in E2E tests ‒ [#1736](https://github.com/paritytech/ink/pull/1736) +- Added `default` attribute to constructors and messages ‒ [#1724](https://github.com/paritytech/ink/pull/1724) +- Added clarification about `Mapping::size` unit ‒ [#1735](https://github.com/paritytech/ink/pull/1735) ### Changed -- Upgraded `syn` to version `2` - [#1731](https://github.com/paritytech/ink/pull/1731) -- Added `default` attribute to constructors and messages - [#1703](https://github.com/paritytech/ink/pull/1724) +- Upgraded `syn` to version `2` ‒ [#1731](https://github.com/paritytech/ink/pull/1731) +- Update `scale-info` requirement to `2.5` ‒ [#1733](https://github.com/paritytech/ink/pull/1733) +- Bump `subxt` to `0.28.0` ‒ [#1750](https://github.com/paritytech/ink/pull/1750) ## Version 4.1.0 diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index ce95da14207..5186baad1e7 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/e2e/Cargo.toml b/crates/e2e/Cargo.toml index d4c6c82e148..4b2712077a5 100644 --- a/crates/e2e/Cargo.toml +++ b/crates/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e" -version = "4.1.0" +version = "4.2.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.1.0", path = "./macro" } -ink = { version = "4.1.0", path = "../ink" } -ink_env = { version = "4.1.0", path = "../env" } -ink_primitives = { version = "4.1.0", path = "../primitives" } +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" } 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 3b2a92dd08b..35513abe9a1 100644 --- a/crates/e2e/macro/Cargo.toml +++ b/crates/e2e/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e_macro" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" @@ -19,7 +19,7 @@ name = "ink_e2e_macro" proc-macro = true [dependencies] -ink_ir = { version = "4.1.0", path = "../../ink/ir" } +ink_ir = { version = "4.2.0", path = "../../ink/ir" } cargo_metadata = "0.15.3" contract-build = "2.0.2" derive_more = "0.99.17" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index a662a78c420..3cc2465e26b 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "4.1.0" +version = "4.2.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.1.0", path = "../../crates/primitives", default-features = false } +ink_primitives = { version = "4.2.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 d9c662ec2fb..679290159f2 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "4.1.0" +version = "4.2.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.1.0", path = "../allocator", default-features = false } -ink_storage_traits = { version = "4.1.0", path = "../storage/traits", default-features = false } -ink_prelude = { version = "4.1.0", path = "../prelude", default-features = false } -ink_primitives = { version = "4.1.0", path = "../primitives", default-features = false } +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 } 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.1.0", path = "../engine/", optional = true } +ink_engine = { version = "4.2.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 1dd74ad93c3..da78b697d49 100644 --- a/crates/ink/Cargo.toml +++ b/crates/ink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink" -version = "4.1.0" +version = "4.2.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.1.0", path = "../env", default-features = false } -ink_storage = { version = "4.1.0", path = "../storage", default-features = false } -ink_primitives = { version = "4.1.0", path = "../primitives", default-features = false } -ink_metadata = { version = "4.1.0", path = "../metadata", default-features = false, optional = true } -ink_prelude = { version = "4.1.0", path = "../prelude", default-features = false } -ink_macro = { version = "4.1.0", path = "macro", default-features = false } +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 } 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 45c0d5b98f7..10d95753f8c 100644 --- a/crates/ink/codegen/Cargo.toml +++ b/crates/ink/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_codegen" -version = "4.1.0" +version = "4.2.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.1.0", path = "../../primitives" } -ir = { version = "4.1.0", package = "ink_ir", path = "../ir", default-features = false } +ink_primitives = { version = "4.2.0", path = "../../primitives" } +ir = { version = "4.2.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 54333332e28..f618fa06925 100644 --- a/crates/ink/ir/Cargo.toml +++ b/crates/ink/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_ir" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/ink/macro/Cargo.toml b/crates/ink/macro/Cargo.toml index e5146f97eb5..e6c18b45f2e 100644 --- a/crates/ink/macro/Cargo.toml +++ b/crates/ink/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_macro" -version = "4.1.0" +version = "4.2.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.1.0", path = "../ir", default-features = false } -ink_codegen = { version = "4.1.0", path = "../codegen", default-features = false } -ink_primitives = { version = "4.1.0", path = "../../primitives/", default-features = false } +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 } 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 ce9f27cd6e2..1b4ef2412d1 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "4.1.0" +version = "4.2.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.1.0", path = "../prelude/", default-features = false } -ink_primitives = { version = "4.1.0", path = "../primitives/", 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 } 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 5d4794be3fb..7c5f88bedf6 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index fe28b60ff64..8fd93ac99c6 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "4.1.0" +version = "4.2.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.1.0", path = "../prelude/", default-features = false } +ink_prelude = { version = "4.2.0", 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 } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index af9809a87ff..a7e82f28a8e 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "4.1.0" +version = "4.2.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.1.0", path = "../env/", default-features = false } -ink_metadata = { version = "4.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.1.0", path = "../primitives/", default-features = false } -ink_storage_traits = { version = "4.1.0", path = "traits", default-features = false } -ink_prelude = { version = "4.1.0", path = "../prelude/", default-features = false } +ink_env = { version = "4.2.0", path = "../env/", default-features = false } +ink_metadata = { version = "4.2.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.2.0", path = "../primitives/", default-features = false } +ink_storage_traits = { version = "4.2.0", path = "traits", default-features = false } +ink_prelude = { version = "4.2.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 99199608437..b20dd07782a 100644 --- a/crates/storage/traits/Cargo.toml +++ b/crates/storage/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage_traits" -version = "4.1.0" +version = "4.2.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.1.0", path = "../../metadata", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.1.0", path = "../../primitives", default-features = false } -ink_prelude = { version = "4.1.0", path = "../../prelude", default-features = false } +ink_metadata = { version = "4.2.0", path = "../../metadata", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.2.0", path = "../../primitives", default-features = false } +ink_prelude = { version = "4.2.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 ed758b63844..a9b1e201d42 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.1.0" +version = "4.2.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 6bb3f3e3089..cc1f698e758 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.1.0" +version = "4.2.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 31238bf1473..9d23389afde 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.1.0" +version = "4.2.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 f6f5403ab61..001c4aac3e1 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.1.0" +version = "4.2.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 f05547dfe9b..575c808b3b5 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.1.0" +version = "4.2.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 2d7f50453c9..b5f35c70b21 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.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/dns/Cargo.toml b/integration-tests/dns/Cargo.toml index bb86e8a155d..9c53b5a71fa 100644 --- a/integration-tests/dns/Cargo.toml +++ b/integration-tests/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "4.1.0" +version = "4.2.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 215de11c43e..99c20029b5f 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.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false @@ -26,4 +26,4 @@ std = [ "scale-info/std", ] ink-as-dependency = [] -e2e-tests = [] \ No newline at end of file +e2e-tests = [] diff --git a/integration-tests/erc1155/Cargo.toml b/integration-tests/erc1155/Cargo.toml index 1901d76aecb..4ee4456163a 100644 --- a/integration-tests/erc1155/Cargo.toml +++ b/integration-tests/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc20/Cargo.toml b/integration-tests/erc20/Cargo.toml index 85ba2d1c664..22c22804ccc 100644 --- a/integration-tests/erc20/Cargo.toml +++ b/integration-tests/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc721/Cargo.toml b/integration-tests/erc721/Cargo.toml index 3140985e945..6bc9025b275 100644 --- a/integration-tests/erc721/Cargo.toml +++ b/integration-tests/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/flipper/Cargo.toml b/integration-tests/flipper/Cargo.toml index 028546ed4e9..1b274773f0f 100644 --- a/integration-tests/flipper/Cargo.toml +++ b/integration-tests/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/incrementer/Cargo.toml b/integration-tests/incrementer/Cargo.toml index dafef93c08c..be2d0fe9ae2 100644 --- a/integration-tests/incrementer/Cargo.toml +++ b/integration-tests/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "4.1.0" +version = "4.2.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 bc1373e3391..52e691303ee 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.1.0" +version = "4.2.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 b2151fd70a7..e8d669ee3d0 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.1.0" +version = "4.2.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 814b5ee868d..ba1cb9adbf6 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.1.0" +version = "4.2.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 d54e93e1a51..40e63653eb1 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.1.0" +version = "4.2.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 2f7bf28621e..ae7344d5530 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.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/mother/Cargo.toml b/integration-tests/mother/Cargo.toml index 353dabba888..6bf00ff1c25 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.1.0" +version = "4.2.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 a80507b60cf..671bbd211f2 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.1.0" +version = "4.2.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 87171ee7400..9704889ebb5 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.1.0" +version = "4.2.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 5d7fc33cd88..7670a992650 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.1.0" +version = "4.2.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 2f0319c9893..6bc0363d867 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.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/multisig/Cargo.toml b/integration-tests/multisig/Cargo.toml index c79fb84293b..163adf413e1 100755 --- a/integration-tests/multisig/Cargo.toml +++ b/integration-tests/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "4.1.0" +version = "4.2.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 79d5a760f9a..32cb4ff5b43 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.1.0" +version = "4.2.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 12964d1aa88..367e793d032 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.1.0" +version = "4.2.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 dea3f279c91..0e98ed56183 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.1.0" +version = "4.2.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 ad7348a92be..22427f528ac 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.1.0" +version = "4.2.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 f7581edb4fe..2211dcfc68f 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.1.0" +version = "4.2.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 5b950a06fa2..e66916b8947 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.1.0" +version = "4.2.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 357f76754e5..10505519148 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.1.0" +version = "4.2.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 c3a1d209050..486fd62ee32 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.1.0" +version = "4.2.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 b9b09761d9a..7d2f533446c 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.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/linting/Cargo.toml b/linting/Cargo.toml index 37675fca597..3774f685c2b 100644 --- a/linting/Cargo.toml +++ b/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_linting" -version = "4.1.0" +version = "4.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false