From 809a113a03868688da7258f7ba6f460507b097dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Wed, 25 May 2022 11:01:36 +0200 Subject: [PATCH] Release ink! 3.2.0 (#1274) * Bump version number to `3.2.0` * Update release notes * Remove reverted fix from changelog --- RELEASES.md | 19 +++++++++++++++++++ crates/allocator/Cargo.toml | 2 +- crates/engine/Cargo.toml | 2 +- crates/env/Cargo.toml | 12 ++++++------ crates/lang/Cargo.toml | 18 +++++++++--------- crates/lang/codegen/Cargo.toml | 4 ++-- crates/lang/ir/Cargo.toml | 2 +- crates/lang/macro/Cargo.toml | 16 ++++++++-------- crates/metadata/Cargo.toml | 6 +++--- crates/prelude/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 4 ++-- crates/storage/Cargo.toml | 14 +++++++------- crates/storage/derive/Cargo.toml | 12 ++++++------ examples/contract-terminate/Cargo.toml | 2 +- examples/contract-transfer/Cargo.toml | 2 +- examples/delegator/Cargo.toml | 2 +- examples/delegator/accumulator/Cargo.toml | 2 +- examples/delegator/adder/Cargo.toml | 2 +- examples/delegator/subber/Cargo.toml | 2 +- examples/dns/Cargo.toml | 2 +- examples/erc1155/Cargo.toml | 2 +- examples/erc20/Cargo.toml | 2 +- examples/erc721/Cargo.toml | 2 +- examples/flipper/Cargo.toml | 2 +- examples/incrementer/Cargo.toml | 2 +- examples/multisig/Cargo.toml | 2 +- examples/rand-extension/Cargo.toml | 2 +- examples/trait-erc20/Cargo.toml | 2 +- examples/trait-flipper/Cargo.toml | 2 +- examples/trait-incrementer/Cargo.toml | 2 +- examples/trait-incrementer/traits/Cargo.toml | 2 +- .../delegate-calls/Cargo.toml | 2 +- .../upgradeable-flipper/Cargo.toml | 2 +- .../forward-calls/Cargo.toml | 2 +- .../set-code-hash/Cargo.toml | 2 +- .../updated-incrementer/Cargo.toml | 2 +- 36 files changed, 89 insertions(+), 70 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 7dd9fd5bf69..f3ff4064c17 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,24 @@ # [Unreleased] +# Version 3.2.0 + +## Compatibility +We recommend using a version of the [`pallet-contracts`](https://github.com/paritytech/substrate/tree/master/frame/contracts) +later than [c0ee2ad](https://github.com/paritytech/substrate/tree/c0ee2adaa54b22ee0df5d1592cd0430961afd95c) +(May 23, 2022) in your node. + +This is the case in the latest release of the [`substrate-contracts-node`](https://github.com/paritytech/substrate-contracts-node) +[v0.16.0](https://github.com/paritytech/substrate-contracts-node/releases/tag/v0.16.0). + +## Added +- Contract size optimization in case contract doesn't accept payment ‒ [#1267](https://github.com/paritytech/ink/pull/1270) [#1273](https://github.com/paritytech/ink/pull/1267) (thanks [@xgreenx](https://github.com/xgreenx)). + +## Changed +- Two functions have been stabilized: [`ink_env::ecdsa_recover`](https://paritytech.github.io/ink/ink_env/fn.ecdsa_recover.html) and [`ink_env::ecdsa_to_eth_address`](https://paritytech.github.io/ink/ink_env/fn.ecdsa_to_eth_address.html) ‒ [#1270](https://github.com/paritytech/ink/pull/1270) [#1273](https://github.com/paritytech/ink/pull/1273) + +## Fixed +- Fixed bug with recent Rust and `cargo test` ‒ [#1272](https://github.com/paritytech/ink/pull/1270) [#1273](https://github.com/paritytech/ink/pull/1272) (thanks [@xgreenx](https://github.com/xgreenx)). + # Version 3.1.0 ## Compatibility diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index a82eba6a780..98f83f60380 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index 3755dd77b15..a688ce568be 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Michael Müller "] edition = "2021" diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index 9c01deebf9f..82ab3cc2eaf 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,10 +15,10 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_metadata = { version = "3.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_allocator = { version = "3.1.0", path = "../allocator/", default-features = false } -ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } -ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } +ink_metadata = { version = "3.2.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_allocator = { version = "3.2.0", path = "../allocator/", default-features = false } +ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } +ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } @@ -32,7 +32,7 @@ static_assertions = "1.1" rlibc = "1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -ink_engine = { version = "3.1.0", path = "../engine/", optional = true } +ink_engine = { version = "3.2.0", path = "../engine/", optional = true } # Hashes for the off-chain environment. sha2 = { version = "0.10", optional = true } diff --git a/crates/lang/Cargo.toml b/crates/lang/Cargo.toml index f2f722fb63e..e91f01ffb38 100644 --- a/crates/lang/Cargo.toml +++ b/crates/lang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,19 +15,19 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_env = { version = "3.1.0", path = "../env", default-features = false } -ink_storage = { version = "3.1.0", path = "../storage", default-features = false } -ink_primitives = { version = "3.1.0", path = "../primitives", default-features = false } -ink_metadata = { version = "3.1.0", path = "../metadata", default-features = false, optional = true } -ink_prelude = { version = "3.1.0", path = "../prelude", default-features = false } -ink_lang_macro = { version = "3.1.0", path = "macro", default-features = false } +ink_env = { version = "3.2.0", path = "../env", default-features = false } +ink_storage = { version = "3.2.0", path = "../storage", default-features = false } +ink_primitives = { version = "3.2.0", path = "../primitives", default-features = false } +ink_metadata = { version = "3.2.0", path = "../metadata", default-features = false, optional = true } +ink_prelude = { version = "3.2.0", path = "../prelude", default-features = false } +ink_lang_macro = { version = "3.2.0", path = "macro", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } derive_more = { version = "0.99", default-features = false, features = ["from"] } [dev-dependencies] -ink_lang_ir = { version = "3.1.0", path = "ir" } -ink_metadata = { version = "3.1.0", default-features = false, path = "../metadata" } +ink_lang_ir = { version = "3.2.0", path = "ir" } +ink_metadata = { version = "3.2.0", default-features = false, path = "../metadata" } trybuild = { version = "1.0.60", features = ["diff"] } # Required for the doctest of `env_access::EnvAccess::instantiate_contract` diff --git a/crates/lang/codegen/Cargo.toml b/crates/lang/codegen/Cargo.toml index b5d935e719b..46b771c02a3 100644 --- a/crates/lang/codegen/Cargo.toml +++ b/crates/lang/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_codegen" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -18,7 +18,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] name = "ink_lang_codegen" [dependencies] -ir = { version = "3.1.0", package = "ink_lang_ir", path = "../ir", default-features = false } +ir = { version = "3.2.0", package = "ink_lang_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/lang/ir/Cargo.toml b/crates/lang/ir/Cargo.toml index f02a3aed5b4..d4c67874efc 100644 --- a/crates/lang/ir/Cargo.toml +++ b/crates/lang/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_ir" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/lang/macro/Cargo.toml b/crates/lang/macro/Cargo.toml index 807cca13868..033ba02ba16 100644 --- a/crates/lang/macro/Cargo.toml +++ b/crates/lang/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_macro" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,19 +15,19 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_lang_ir = { version = "3.1.0", path = "../ir", default-features = false } -ink_lang_codegen = { version = "3.1.0", path = "../codegen", default-features = false } -ink_primitives = { version = "3.1.0", path = "../../primitives/", default-features = false } +ink_lang_ir = { version = "3.2.0", path = "../ir", default-features = false } +ink_lang_codegen = { version = "3.2.0", path = "../codegen", default-features = false } +ink_primitives = { version = "3.2.0", path = "../../primitives/", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } syn = "1" proc-macro2 = "1" [dev-dependencies] -ink_metadata = { version = "3.1.0", path = "../../metadata/" } -ink_env = { version = "3.1.0", path = "../../env/" } -ink_storage = { version = "3.1.0", path = "../../storage/" } -ink_lang = { version = "3.1.0", path = ".." } +ink_metadata = { version = "3.2.0", path = "../../metadata/" } +ink_env = { version = "3.2.0", path = "../../env/" } +ink_storage = { version = "3.2.0", path = "../../storage/" } +ink_lang = { version = "3.2.0", path = ".." } scale-info = { version = "2", default-features = false, features = ["derive"] } [lib] diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 95873c18962..e9e780945f2 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "3.1.0" +version = "3.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 = "3.1.0", path = "../prelude/", default-features = false } -ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } +ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } +ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } impl-serde = "0.3.1" diff --git a/crates/prelude/Cargo.toml b/crates/prelude/Cargo.toml index 36e74930c5e..62cff59607a 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 324fae3522e..63ab4f06eb5 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] [dependencies] -ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } +ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } cfg-if = "1" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 0cb87c79f78..fa4f6832a0c 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "3.1.0" +version = "3.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 = "3.1.0", path = "../env/", default-features = false } -ink_metadata = { version = "3.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } -ink_storage_derive = { version = "3.1.0", path = "derive", default-features = false } -ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } +ink_env = { version = "3.2.0", path = "../env/", default-features = false } +ink_metadata = { version = "3.2.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } +ink_storage_derive = { version = "3.2.0", path = "derive", default-features = false } +ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } @@ -33,7 +33,7 @@ quickcheck_macros = "1.0" itertools = "0.10" paste = "1.0" -ink_lang = { version = "3.1.0", path = "../lang/", default-features = false } +ink_lang = { version = "3.2.0", path = "../lang/", default-features = false } [features] default = ["std"] diff --git a/crates/storage/derive/Cargo.toml b/crates/storage/derive/Cargo.toml index 19328d57abf..66ba233965b 100644 --- a/crates/storage/derive/Cargo.toml +++ b/crates/storage/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage_derive" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -25,8 +25,8 @@ synstructure = "0.12.4" [dev-dependencies] scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } -ink_env = { version = "3.1.0", path = "../../env" } -ink_primitives = { version = "3.1.0", path = "../../primitives" } -ink_metadata = { version = "3.1.0", path = "../../metadata" } -ink_prelude = { version = "3.1.0", path = "../../prelude/" } -ink_storage = { version = "3.1.0", path = ".." } +ink_env = { version = "3.2.0", path = "../../env" } +ink_primitives = { version = "3.2.0", path = "../../primitives" } +ink_metadata = { version = "3.2.0", path = "../../metadata" } +ink_prelude = { version = "3.2.0", path = "../../prelude/" } +ink_storage = { version = "3.2.0", path = ".." } diff --git a/examples/contract-terminate/Cargo.toml b/examples/contract-terminate/Cargo.toml index fecc72823af..93037a5da10 100644 --- a/examples/contract-terminate/Cargo.toml +++ b/examples/contract-terminate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_terminate" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/contract-transfer/Cargo.toml b/examples/contract-transfer/Cargo.toml index dc8d2bd849b..c5683626fa4 100644 --- a/examples/contract-transfer/Cargo.toml +++ b/examples/contract-transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_transfer" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/Cargo.toml b/examples/delegator/Cargo.toml index 0ce36e088f8..003547185ec 100644 --- a/examples/delegator/Cargo.toml +++ b/examples/delegator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "delegator" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/accumulator/Cargo.toml b/examples/delegator/accumulator/Cargo.toml index ae914b85897..2423ea2e81f 100644 --- a/examples/delegator/accumulator/Cargo.toml +++ b/examples/delegator/accumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accumulator" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/adder/Cargo.toml b/examples/delegator/adder/Cargo.toml index 41bfca298f0..bd54fbd9a72 100644 --- a/examples/delegator/adder/Cargo.toml +++ b/examples/delegator/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/subber/Cargo.toml b/examples/delegator/subber/Cargo.toml index f23e73ac869..4376c7b6ad0 100644 --- a/examples/delegator/subber/Cargo.toml +++ b/examples/delegator/subber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subber" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/dns/Cargo.toml b/examples/dns/Cargo.toml index f78d334c4fe..67945cf0595 100644 --- a/examples/dns/Cargo.toml +++ b/examples/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc1155/Cargo.toml b/examples/erc1155/Cargo.toml index d3c77042355..59e800b444e 100644 --- a/examples/erc1155/Cargo.toml +++ b/examples/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc20/Cargo.toml b/examples/erc20/Cargo.toml index 8151361b5f7..1125b46212d 100644 --- a/examples/erc20/Cargo.toml +++ b/examples/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc721/Cargo.toml b/examples/erc721/Cargo.toml index 333d29b680f..90ee3bdbaa6 100644 --- a/examples/erc721/Cargo.toml +++ b/examples/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/flipper/Cargo.toml b/examples/flipper/Cargo.toml index ab88ec88d31..2117d38f5eb 100644 --- a/examples/flipper/Cargo.toml +++ b/examples/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/incrementer/Cargo.toml b/examples/incrementer/Cargo.toml index 1de66af7284..46b62df511f 100644 --- a/examples/incrementer/Cargo.toml +++ b/examples/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/multisig/Cargo.toml b/examples/multisig/Cargo.toml index a349846c754..1346bf63910 100755 --- a/examples/multisig/Cargo.toml +++ b/examples/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/rand-extension/Cargo.toml b/examples/rand-extension/Cargo.toml index da905862ec8..58808a267b1 100755 --- a/examples/rand-extension/Cargo.toml +++ b/examples/rand-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_extension" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-erc20/Cargo.toml b/examples/trait-erc20/Cargo.toml index 0f6f69b8c7b..d328b24cf56 100644 --- a/examples/trait-erc20/Cargo.toml +++ b/examples/trait-erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_erc20" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-flipper/Cargo.toml b/examples/trait-flipper/Cargo.toml index 6e0ae68d398..ccdfcc532a9 100644 --- a/examples/trait-flipper/Cargo.toml +++ b/examples/trait-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_flipper" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-incrementer/Cargo.toml b/examples/trait-incrementer/Cargo.toml index 6cec05d048d..6f9c5a43131 100644 --- a/examples/trait-incrementer/Cargo.toml +++ b/examples/trait-incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait-incrementer" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-incrementer/traits/Cargo.toml b/examples/trait-incrementer/traits/Cargo.toml index b420bed0e35..68b43066406 100644 --- a/examples/trait-incrementer/traits/Cargo.toml +++ b/examples/trait-incrementer/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "traits" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/upgradeable-contracts/delegate-calls/Cargo.toml b/examples/upgradeable-contracts/delegate-calls/Cargo.toml index 48de894f3d0..53f65f0b75b 100644 --- a/examples/upgradeable-contracts/delegate-calls/Cargo.toml +++ b/examples/upgradeable-contracts/delegate-calls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "delegate_calls" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/upgradeable-contracts/delegate-calls/upgradeable-flipper/Cargo.toml b/examples/upgradeable-contracts/delegate-calls/upgradeable-flipper/Cargo.toml index e2c21f49ecd..d1d3d5abc07 100644 --- a/examples/upgradeable-contracts/delegate-calls/upgradeable-flipper/Cargo.toml +++ b/examples/upgradeable-contracts/delegate-calls/upgradeable-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "upgradeable_flipper" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/upgradeable-contracts/forward-calls/Cargo.toml b/examples/upgradeable-contracts/forward-calls/Cargo.toml index dabd5e523a5..b607befb9f4 100644 --- a/examples/upgradeable-contracts/forward-calls/Cargo.toml +++ b/examples/upgradeable-contracts/forward-calls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forward_calls" -version = "3.1.0" +version = "3.2.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/upgradeable-contracts/set-code-hash/Cargo.toml b/examples/upgradeable-contracts/set-code-hash/Cargo.toml index 369e2c50c19..96430ba8cf4 100644 --- a/examples/upgradeable-contracts/set-code-hash/Cargo.toml +++ b/examples/upgradeable-contracts/set-code-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "3.1.0" +version = "3.2.0" edition = "2021" authors = ["Parity Technologies "] publish = false diff --git a/examples/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml b/examples/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml index 34a5578c3a3..71578227cc0 100644 --- a/examples/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml +++ b/examples/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "updated-incrementer" -version = "3.1.0" +version = "3.2.0" edition = "2021" authors = ["Parity Technologies "] publish = false