From c2c0a9ff2c8f161b183c0e3d99c6358c96afaee3 Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Wed, 21 Sep 2022 13:07:37 +0100 Subject: [PATCH] Release `v4.0.0-alpha.3` (#1409) * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * (cargo-release) version 4.0.0-alpha.3 * Bump inter crate dependency versions * Update CHANGELOG.md for alpha.3 * Human error * Update CHANGELOG.md Co-authored-by: Hernando Castano * Remove redundant circular dependency on ink_env Co-authored-by: Hernando Castano --- CHANGELOG.md | 9 ++++++++- crates/allocator/Cargo.toml | 2 +- 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 | 6 +++--- crates/storage/Cargo.toml | 12 ++++++------ crates/storage/traits/Cargo.toml | 11 +++++------ crates/storage/traits/src/impls/mod.rs | 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/mother/Cargo.toml | 2 +- examples/multisig/Cargo.toml | 2 +- examples/payment-channel/Cargo.toml | 2 +- examples/psp22-extension/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 +- .../upgradeable-contracts/forward-calls/Cargo.toml | 2 +- .../upgradeable-contracts/set-code-hash/Cargo.toml | 2 +- .../set-code-hash/updated-incrementer/Cargo.toml | 2 +- linting/Cargo.toml | 2 +- 39 files changed, 80 insertions(+), 78 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6a3eb845e6..40065bc5d07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## Version 4.0.0-alpha.2 +## Version 4.0.0-alpha.3 ### Breaking Changes @@ -49,6 +49,13 @@ through a feature flag. `wee-alloc` is no longer maintained and we removed suppo ### Removed - Remove `wee-alloc` ‒ [#1403](https://github.com/paritytech/ink/pull/1403) +## Version 4.0.0-alpha.2 + +**This version was skipped due to an error during the release process** + +As part of this series of `alpha`s we are looking for ways to streamline our release process, +so small errors like this are learning experiences for us. + ## Version 4.0.0-alpha.1 ### Compatibility diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index e84ea0da29d..80286b8088e 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index ef57a3ab243..7faacd1e56c 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../../crates/primitives", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", path = "../../crates/primitives", 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"] } diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index f0bc6e817a5..b6b556ae94d 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../metadata", default-features = false, features = ["derive"], optional = true } -ink_allocator = { version = "4.0.0-alpha.2", path = "../allocator", default-features = false } -ink_storage_traits = { version = "4.0.0-alpha.2", path = "../storage/traits", default-features = false } -ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude", default-features = false } -ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives", default-features = false } +ink_metadata = { version = "4.0.0-alpha.3", path = "../metadata", default-features = false, features = ["derive"], optional = true } +ink_allocator = { version = "4.0.0-alpha.3", path = "../allocator", default-features = false } +ink_storage_traits = { version = "4.0.0-alpha.3", path = "../storage/traits", default-features = false } +ink_prelude = { version = "4.0.0-alpha.3", path = "../prelude", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", path = "../primitives", 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 @@ static_assertions = "1.1" rlibc = "1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -ink_engine = { version = "4.0.0-alpha.2", path = "../engine/", optional = true } +ink_engine = { version = "4.0.0-alpha.3", 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 7c1b5f2a607..fcad926de33 100644 --- a/crates/ink/Cargo.toml +++ b/crates/ink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" @@ -15,12 +15,12 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_env = { version = "4.0.0-alpha.2", path = "../env", default-features = false } -ink_storage = { version = "4.0.0-alpha.2", path = "../storage", default-features = false } -ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives", default-features = false } -ink_metadata = { version = "4.0.0-alpha.2", path = "../metadata", default-features = false, optional = true } -ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude", default-features = false } -ink_macro = { version = "4.0.0-alpha.2", path = "macro", default-features = false } +ink_env = { version = "4.0.0-alpha.3", path = "../env", default-features = false } +ink_storage = { version = "4.0.0-alpha.3", path = "../storage", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", path = "../primitives", default-features = false } +ink_metadata = { version = "4.0.0-alpha.3", path = "../metadata", default-features = false, optional = true } +ink_prelude = { version = "4.0.0-alpha.3", path = "../prelude", default-features = false } +ink_macro = { version = "4.0.0-alpha.3", 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"] } diff --git a/crates/ink/codegen/Cargo.toml b/crates/ink/codegen/Cargo.toml index 2fcbd70a964..261c4d50d0c 100644 --- a/crates/ink/codegen/Cargo.toml +++ b/crates/ink/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_codegen" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../../primitives" } -ir = { version = "4.0.0-alpha.2", package = "ink_ir", path = "../ir", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", path = "../../primitives" } +ir = { version = "4.0.0-alpha.3", 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 85475142913..33012fe95a9 100644 --- a/crates/ink/ir/Cargo.toml +++ b/crates/ink/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_ir" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/ink/macro/Cargo.toml b/crates/ink/macro/Cargo.toml index ddebe2d8da8..a7c9145d1d3 100644 --- a/crates/ink/macro/Cargo.toml +++ b/crates/ink/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_macro" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../ir", default-features = false } -ink_codegen = { version = "4.0.0-alpha.2", path = "../codegen", default-features = false } -ink_primitives = { version = "4.0.0-alpha.2", path = "../../primitives/", default-features = false } +ink_ir = { version = "4.0.0-alpha.3", path = "../ir", default-features = false } +ink_codegen = { version = "4.0.0-alpha.3", path = "../codegen", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", path = "../../primitives/", default-features = false } scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } syn = "1" diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 97a3be6fb17..b3e02f5804a 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../prelude/", default-features = false } -ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives/", default-features = false } +ink_prelude = { version = "4.0.0-alpha.3", path = "../prelude/", default-features = false } +ink_primitives = { version = "4.0.0-alpha.3", 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 6da53233dac..87e1f862739 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 2aeee7f32f6..e19ad86f6c9 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../prelude/", default-features = false } +ink_prelude = { version = "4.0.0-alpha.3", 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 } xxhash-rust = { version = "0.8", features = ["const_xxh32"] } @@ -27,4 +27,4 @@ std = [ "ink_prelude/std", "scale/std", "scale-info/std", -] \ No newline at end of file +] diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 46ca8c80dc0..8fadb83d785 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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.0-alpha.2", path = "../env/", default-features = false } -ink_metadata = { version = "4.0.0-alpha.2", path = "../metadata/", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives/", default-features = false } -ink_storage_traits = { version = "4.0.0-alpha.2", path = "traits", default-features = false } -ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude/", default-features = false } +ink_env = { version = "4.0.0-alpha.3", path = "../env/", default-features = false } +ink_metadata = { version = "4.0.0-alpha.3", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.0.0-alpha.3", path = "../primitives/", default-features = false } +ink_storage_traits = { version = "4.0.0-alpha.3", path = "traits", default-features = false } +ink_prelude = { version = "4.0.0-alpha.3", 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"] } diff --git a/crates/storage/traits/Cargo.toml b/crates/storage/traits/Cargo.toml index 3f6063505b7..dc3c6a4966a 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.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" @@ -15,16 +15,15 @@ categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [dependencies] -ink_metadata = { version = "4.0.0-alpha.2", path = "../../metadata", default-features = false, features = ["derive"], optional = true } -ink_primitives = { version = "4.0.0-alpha.2", path = "../../primitives", default-features = false } -ink_prelude = { version = "4.0.0-alpha.2", path = "../../prelude", default-features = false } +ink_metadata = { version = "4.0.0-alpha.3", path = "../../metadata", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.0.0-alpha.3", path = "../../primitives", default-features = false } +ink_prelude = { version = "4.0.0-alpha.3", 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 } syn = { version = "1", features = ["full"] } [dev-dependencies] paste = "1.0" -ink_env = { version = "4.0.0-alpha.2", path = "../../env" } [features] default = ["std"] @@ -34,4 +33,4 @@ std = [ "ink_prelude/std", "scale/std", "scale-info/std", -] \ No newline at end of file +] diff --git a/crates/storage/traits/src/impls/mod.rs b/crates/storage/traits/src/impls/mod.rs index a7eaa567650..e44d1e9f6dc 100644 --- a/crates/storage/traits/src/impls/mod.rs +++ b/crates/storage/traits/src/impls/mod.rs @@ -119,14 +119,10 @@ mod tests { #[test] #[allow(non_snake_case)] fn [<$ty _storage_hint_works>] () { - ink_env::test::run_test::(|_| { - assert_eq!( - ::core::any::TypeId::of::<$ty>(), - ::core::any::TypeId::of::<<$ty as $crate::StorableHint<$crate::ManualKey<123>>>::Type>() - ); - Ok(()) - }) - .unwrap() + assert_eq!( + ::core::any::TypeId::of::<$ty>(), + ::core::any::TypeId::of::<<$ty as $crate::StorableHint<$crate::ManualKey<123>>>::Type>() + ); } } }; diff --git a/examples/contract-terminate/Cargo.toml b/examples/contract-terminate/Cargo.toml index 30f3e7fa7ee..f0983b52e23 100644 --- a/examples/contract-terminate/Cargo.toml +++ b/examples/contract-terminate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_terminate" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/contract-transfer/Cargo.toml b/examples/contract-transfer/Cargo.toml index 78b34cc3c4b..a997af542fe 100644 --- a/examples/contract-transfer/Cargo.toml +++ b/examples/contract-transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_transfer" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/Cargo.toml b/examples/delegator/Cargo.toml index 7e2736827c4..691a416d218 100644 --- a/examples/delegator/Cargo.toml +++ b/examples/delegator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "delegator" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/accumulator/Cargo.toml b/examples/delegator/accumulator/Cargo.toml index ce9371f4819..c4beec77898 100644 --- a/examples/delegator/accumulator/Cargo.toml +++ b/examples/delegator/accumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accumulator" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/adder/Cargo.toml b/examples/delegator/adder/Cargo.toml index 04c0d53823d..527fe6d0a46 100644 --- a/examples/delegator/adder/Cargo.toml +++ b/examples/delegator/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/subber/Cargo.toml b/examples/delegator/subber/Cargo.toml index 24b405126e2..59c93e4613f 100644 --- a/examples/delegator/subber/Cargo.toml +++ b/examples/delegator/subber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subber" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/dns/Cargo.toml b/examples/dns/Cargo.toml index 841620855db..29c26cb0f4a 100644 --- a/examples/dns/Cargo.toml +++ b/examples/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc1155/Cargo.toml b/examples/erc1155/Cargo.toml index 2d03a49c201..f67ad1c705c 100644 --- a/examples/erc1155/Cargo.toml +++ b/examples/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc20/Cargo.toml b/examples/erc20/Cargo.toml index 210112d31f1..c210b868b3d 100644 --- a/examples/erc20/Cargo.toml +++ b/examples/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc721/Cargo.toml b/examples/erc721/Cargo.toml index 7437c50578b..1238b7d5ddc 100644 --- a/examples/erc721/Cargo.toml +++ b/examples/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/flipper/Cargo.toml b/examples/flipper/Cargo.toml index f785be033c2..b84c8679960 100644 --- a/examples/flipper/Cargo.toml +++ b/examples/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/incrementer/Cargo.toml b/examples/incrementer/Cargo.toml index f1f5633263f..84ae3095e15 100644 --- a/examples/incrementer/Cargo.toml +++ b/examples/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/mother/Cargo.toml b/examples/mother/Cargo.toml index d989de5c03d..98939e9d411 100755 --- a/examples/mother/Cargo.toml +++ b/examples/mother/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mother" description = "Mother of all contracts" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/multisig/Cargo.toml b/examples/multisig/Cargo.toml index 1a6855b29d4..9c21d02b140 100755 --- a/examples/multisig/Cargo.toml +++ b/examples/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/payment-channel/Cargo.toml b/examples/payment-channel/Cargo.toml index e270203c015..1a16473d881 100755 --- a/examples/payment-channel/Cargo.toml +++ b/examples/payment-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "payment_channel" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/psp22-extension/Cargo.toml b/examples/psp22-extension/Cargo.toml index 5dba87d3161..5ced859fcae 100755 --- a/examples/psp22-extension/Cargo.toml +++ b/examples/psp22-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psp22_extension" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/rand-extension/Cargo.toml b/examples/rand-extension/Cargo.toml index fdf7562e5bc..c644e5dcd1a 100755 --- a/examples/rand-extension/Cargo.toml +++ b/examples/rand-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_extension" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-erc20/Cargo.toml b/examples/trait-erc20/Cargo.toml index cf65cd2ef19..021e842adf1 100644 --- a/examples/trait-erc20/Cargo.toml +++ b/examples/trait-erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_erc20" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-flipper/Cargo.toml b/examples/trait-flipper/Cargo.toml index 65440aa3b2b..4fdda79764e 100644 --- a/examples/trait-flipper/Cargo.toml +++ b/examples/trait-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_flipper" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-incrementer/Cargo.toml b/examples/trait-incrementer/Cargo.toml index 0b07be4800c..a77d9fd51c8 100644 --- a/examples/trait-incrementer/Cargo.toml +++ b/examples/trait-incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait-incrementer" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-incrementer/traits/Cargo.toml b/examples/trait-incrementer/traits/Cargo.toml index 98986a63ae1..aa8b9fe38bb 100644 --- a/examples/trait-incrementer/traits/Cargo.toml +++ b/examples/trait-incrementer/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "traits" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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 ec466dfe1cd..1d837cfc903 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 = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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 19343c743a8..5fda147c7f9 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 = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" 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 7aec0995e62..065528e49eb 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 = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" edition = "2021" authors = ["Parity Technologies "] publish = false diff --git a/linting/Cargo.toml b/linting/Cargo.toml index f4338d933d3..822c212a43d 100644 --- a/linting/Cargo.toml +++ b/linting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_linting" -version = "4.0.0-alpha.2" +version = "4.0.0-alpha.3" authors = ["Parity Technologies "] edition = "2021" publish = false