From d068d18f1192bcdb889e4b8d96132ab0a4fa0fe8 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 23 Mar 2023 18:55:59 +0100 Subject: [PATCH] `4.1.0` Release (#1727) * bump version to 4.1.0 * format --- CHANGELOG.md | 3 +++ crates/allocator/Cargo.toml | 2 +- crates/e2e/Cargo.toml | 10 +++++----- crates/e2e/macro/Cargo.toml | 4 ++-- crates/e2e/macro/src/config.rs | 4 ++-- crates/engine/Cargo.toml | 4 ++-- crates/env/Cargo.toml | 14 +++++++------- crates/ink/Cargo.toml | 14 +++++++------- crates/ink/codegen/Cargo.toml | 6 +++--- crates/ink/ir/Cargo.toml | 2 +- crates/ink/macro/Cargo.toml | 8 ++++---- crates/metadata/Cargo.toml | 6 +++--- crates/prelude/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 4 ++-- crates/storage/Cargo.toml | 12 ++++++------ crates/storage/traits/Cargo.toml | 8 ++++---- integration-tests/basic_contract_caller/Cargo.toml | 2 +- .../other_contract/Cargo.toml | 2 +- integration-tests/contract-terminate/Cargo.toml | 2 +- integration-tests/contract-transfer/Cargo.toml | 2 +- integration-tests/custom-environment/Cargo.toml | 2 +- integration-tests/custom_allocator/Cargo.toml | 2 +- integration-tests/dns/Cargo.toml | 2 +- integration-tests/erc1155/Cargo.toml | 2 +- integration-tests/erc20/Cargo.toml | 2 +- integration-tests/erc721/Cargo.toml | 2 +- integration-tests/flipper/Cargo.toml | 2 +- integration-tests/incrementer/Cargo.toml | 2 +- .../call-builder/Cargo.toml | 2 +- .../constructors-return-value/Cargo.toml | 2 +- .../contract-ref/Cargo.toml | 2 +- .../integration-flipper/Cargo.toml | 2 +- .../mapping_integration_tests/Cargo.toml | 2 +- integration-tests/mother/Cargo.toml | 2 +- integration-tests/multi_contract_caller/Cargo.toml | 2 +- .../multi_contract_caller/accumulator/Cargo.toml | 2 +- .../multi_contract_caller/adder/Cargo.toml | 2 +- .../multi_contract_caller/subber/Cargo.toml | 2 +- integration-tests/multisig/Cargo.toml | 2 +- integration-tests/payment-channel/Cargo.toml | 2 +- integration-tests/psp22-extension/Cargo.toml | 2 +- integration-tests/rand-extension/Cargo.toml | 2 +- integration-tests/set_code_hash/Cargo.toml | 2 +- .../set_code_hash/updated_incrementer/Cargo.toml | 2 +- integration-tests/trait-erc20/Cargo.toml | 2 +- integration-tests/trait-flipper/Cargo.toml | 2 +- integration-tests/trait-incrementer/Cargo.toml | 2 +- .../trait-incrementer/traits/Cargo.toml | 2 +- linting/Cargo.toml | 2 +- 49 files changed, 86 insertions(+), 83 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce2bdc425f8..22ef08af222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## Version 4.1.0 + ### Added - Basic support for `dyn Trait` to allow cross-contract calls only with trait - [#1673](https://github.com/paritytech/ink/pull/1673) - E2E: auto detect contracts to be built - [#1691](https://github.com/paritytech/ink/pull/1691) diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index 7d4a4c9b849..ce95da14207 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/e2e/Cargo.toml b/crates/e2e/Cargo.toml index e861b1e0098..c40a8ba382b 100644 --- a/crates/e2e/Cargo.toml +++ b/crates/e2e/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e" -version = "4.0.1" +version = "4.1.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.0.1", path = "./macro" } -ink = { version = "4.0.1", path = "../ink" } -ink_env = { version = "4.0.1", path = "../env" } -ink_primitives = { version = "4.0.1", path = "../primitives" } +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" } 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 14601e90c20..5dbc5b17943 100644 --- a/crates/e2e/macro/Cargo.toml +++ b/crates/e2e/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_e2e_macro" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" @@ -19,7 +19,7 @@ name = "ink_e2e_macro" proc-macro = true [dependencies] -ink_ir = { version = "4.0.1", path = "../../ink/ir" } +ink_ir = { version = "4.1.0", path = "../../ink/ir" } cargo_metadata = "0.15.3" contract-build = "2.0.2" derive_more = "0.99.17" diff --git a/crates/e2e/macro/src/config.rs b/crates/e2e/macro/src/config.rs index 9cff3ae167a..a97c09e4547 100644 --- a/crates/e2e/macro/src/config.rs +++ b/crates/e2e/macro/src/config.rs @@ -28,11 +28,11 @@ pub struct E2EConfig { whitelisted_attributes: WhitelistedAttributes, /// Additional contracts that have to be built before executing the test. additional_contracts: Vec, - /// The [`Environment`](https://docs.rs/ink_env/4.0.1/ink_env/trait.Environment.html) to use + /// The [`Environment`](https://docs.rs/ink_env/4.1.0/ink_env/trait.Environment.html) to use /// during test execution. /// /// If no `Environment` is specified, the - /// [`DefaultEnvironment`](https://docs.rs/ink_env/4.0.1/ink_env/enum.DefaultEnvironment.html) + /// [`DefaultEnvironment`](https://docs.rs/ink_env/4.1.0/ink_env/enum.DefaultEnvironment.html) /// will be used. environment: Option, } diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index 1fe343d92d2..a662a78c420 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "4.0.1" +version = "4.1.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.0.1", path = "../../crates/primitives", default-features = false } +ink_primitives = { version = "4.1.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 6e05a604c42..24e5fe488b8 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "4.0.1" +version = "4.1.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_metadata = { version = "4.0.1", path = "../metadata", default-features = false, features = ["derive"], optional = true } -ink_allocator = { version = "4.0.1", path = "../allocator", default-features = false } -ink_storage_traits = { version = "4.0.1", path = "../storage/traits", default-features = false } -ink_prelude = { version = "4.0.1", path = "../prelude", default-features = false } -ink_primitives = { version = "4.0.1", path = "../primitives", default-features = false } +ink_metadata = { version = "4.1.0", path = "../metadata", default-features = false, features = ["derive"], optional = true } +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 } 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.0.1", path = "../engine/", optional = true } +ink_engine = { version = "4.1.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 affc46176d8..08742746d1e 100644 --- a/crates/ink/Cargo.toml +++ b/crates/ink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink" -version = "4.0.1" +version = "4.1.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.0.1", path = "../env", default-features = false } -ink_storage = { version = "4.0.1", path = "../storage", default-features = false } -ink_primitives = { version = "4.0.1", path = "../primitives", default-features = false } -ink_metadata = { version = "4.0.1", path = "../metadata", default-features = false, optional = true } -ink_prelude = { version = "4.0.1", path = "../prelude", default-features = false } -ink_macro = { version = "4.0.1", path = "macro", default-features = false } +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 } 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 6f4ab6724bd..e42f3fa8025 100644 --- a/crates/ink/codegen/Cargo.toml +++ b/crates/ink/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_codegen" -version = "4.0.1" +version = "4.1.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.0.1", path = "../../primitives" } -ir = { version = "4.0.1", package = "ink_ir", path = "../ir", default-features = false } +ink_primitives = { version = "4.1.0", path = "../../primitives" } +ir = { version = "4.1.0", package = "ink_ir", path = "../ir", default-features = false } quote = "1" syn = { version = "1.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 6e34f69bd0b..961c96f2b05 100644 --- a/crates/ink/ir/Cargo.toml +++ b/crates/ink/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_ir" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/ink/macro/Cargo.toml b/crates/ink/macro/Cargo.toml index 70bc9fc14f4..42c7a3801bd 100644 --- a/crates/ink/macro/Cargo.toml +++ b/crates/ink/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_macro" -version = "4.0.1" +version = "4.1.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.0.1", path = "../ir", default-features = false } -ink_codegen = { version = "4.0.1", path = "../codegen", default-features = false } -ink_primitives = { version = "4.0.1", path = "../../primitives/", default-features = false } +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 } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } syn = "1" diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 15ac2936b3a..ec81cc398d9 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "4.0.1" +version = "4.1.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.0.1", path = "../prelude/", default-features = false } -ink_primitives = { version = "4.0.1", path = "../primitives/", 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 } 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 f6452b9d6f0..5d4794be3fb 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index a78142efd8f..86f852a49e7 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "4.0.1" +version = "4.1.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.0.1", path = "../prelude/", default-features = false } +ink_prelude = { version = "4.1.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } scale-info = { version = "2.3", default-features = false, features = ["derive"], optional = true } xxhash-rust = { version = "0.8", features = ["const_xxh32"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index c1ede113cf7..ccbe4dabe2b 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "4.0.1" +version = "4.1.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.0.1", path = "../env/", default-features = false } -ink_metadata = { version = "4.0.1", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.0.1", path = "../primitives/", default-features = false } -ink_storage_traits = { version = "4.0.1", path = "traits", default-features = false } -ink_prelude = { version = "4.0.1", path = "../prelude/", default-features = false } +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 } 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 4a31aee5471..f09c8a7db0c 100644 --- a/crates/storage/traits/Cargo.toml +++ b/crates/storage/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage_traits" -version = "4.0.1" +version = "4.1.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.0.1", path = "../../metadata", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.0.1", path = "../../primitives", default-features = false } -ink_prelude = { version = "4.0.1", path = "../../prelude", 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_prelude = { version = "4.1.0", path = "../../prelude", default-features = false } scale = { package = "parity-scale-codec", version = "3.4", default-features = false, features = ["derive"] } scale-info = { version = "2.3", 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 3836b4da2a3..b51296a1a2a 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.0.1" +version = "4.1.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 e63cbe5d406..05ffc8c7860 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.0.1" +version = "4.1.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 d2834eb3c92..fa78d403cd7 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.0.1" +version = "4.1.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 1b54492d75b..420e3a0b82d 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.0.1" +version = "4.1.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 514d7ada7b4..c227f9e42f4 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.0.1" +version = "4.1.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 b77054071e5..958b0642599 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.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/dns/Cargo.toml b/integration-tests/dns/Cargo.toml index 9eb3733ec81..03b8c550e42 100644 --- a/integration-tests/dns/Cargo.toml +++ b/integration-tests/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc1155/Cargo.toml b/integration-tests/erc1155/Cargo.toml index 2e52ef6642c..370b583e64a 100644 --- a/integration-tests/erc1155/Cargo.toml +++ b/integration-tests/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc20/Cargo.toml b/integration-tests/erc20/Cargo.toml index 2389805c87b..1595afb067b 100644 --- a/integration-tests/erc20/Cargo.toml +++ b/integration-tests/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/erc721/Cargo.toml b/integration-tests/erc721/Cargo.toml index f8d1cca5f3f..a1675b2c801 100644 --- a/integration-tests/erc721/Cargo.toml +++ b/integration-tests/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/flipper/Cargo.toml b/integration-tests/flipper/Cargo.toml index 324f87ddaec..631619a8898 100644 --- a/integration-tests/flipper/Cargo.toml +++ b/integration-tests/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/incrementer/Cargo.toml b/integration-tests/incrementer/Cargo.toml index 173eb53c804..55b29481ccf 100644 --- a/integration-tests/incrementer/Cargo.toml +++ b/integration-tests/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "4.0.1" +version = "4.1.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 008615d68df..ca0b9e8f112 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.0.1" +version = "4.1.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 6d4dfa6bce0..2589baa9f15 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.0.1" +version = "4.1.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 8801797b2f2..16a3ce862a4 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.0.1" +version = "4.1.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 fa037e62d55..6c3710156a3 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.0.1" +version = "4.1.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 ce9d51ce890..aa0997d7569 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.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/integration-tests/mother/Cargo.toml b/integration-tests/mother/Cargo.toml index 4e322fcc514..06bd42552b1 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.0.1" +version = "4.1.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 750bb2c4ecf..a06c4f60cab 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.0.1" +version = "4.1.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 f460417f813..0f9f26b1a48 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.0.1" +version = "4.1.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 2512c752b20..7df66decf29 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.0.1" +version = "4.1.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 475e0691122..1bb0ddb5ba7 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.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/integration-tests/multisig/Cargo.toml b/integration-tests/multisig/Cargo.toml index 76eeb76a866..83970b8a390 100755 --- a/integration-tests/multisig/Cargo.toml +++ b/integration-tests/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "4.0.1" +version = "4.1.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 ccfc677d215..6adda1b45f7 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.0.1" +version = "4.1.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 ec09dbad0f2..afd5b141345 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.0.1" +version = "4.1.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 1007ad2b03d..389223b79eb 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.0.1" +version = "4.1.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 6a4a69b4dda..01cc383d557 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.0.1" +version = "4.1.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 23fc170ea38..c5e65e6893d 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.0.1" +version = "4.1.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 b19515e7a49..b4591564b7c 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.0.1" +version = "4.1.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 49d6a4265c0..779e718080a 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.0.1" +version = "4.1.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 5f308627e56..2b3eed23dc5 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.0.1" +version = "4.1.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 cd0f8d74311..bbac5ffa143 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.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/linting/Cargo.toml b/linting/Cargo.toml index 53d4ca64d2c..8e8c7451666 100644 --- a/linting/Cargo.toml +++ b/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_linting" -version = "4.0.1" +version = "4.1.0" authors = ["Parity Technologies "] edition = "2021" publish = false