diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index 98f83f60380..1f5e5516fe6 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_allocator" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index a688ce568be..3c6e9303784 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_engine" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies ", "Michael Müller "] edition = "2021" diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index 82ab3cc2eaf..19f671cfe75 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_env" -version = "3.2.0" +version = "4.0.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.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 } +ink_metadata = { version = "4.0.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_allocator = { version = "4.0.0", path = "../allocator/", default-features = false } +ink_primitives = { version = "4.0.0", path = "../primitives/", default-features = false } +ink_prelude = { version = "4.0.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.2.0", path = "../engine/", optional = true } +ink_engine = { version = "4.0.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 e91f01ffb38..4935daa196d 100644 --- a/crates/lang/Cargo.toml +++ b/crates/lang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang" -version = "3.2.0" +version = "4.0.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.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 } +ink_env = { version = "4.0.0", path = "../env", default-features = false } +ink_storage = { version = "4.0.0", path = "../storage", default-features = false } +ink_primitives = { version = "4.0.0", path = "../primitives", default-features = false } +ink_metadata = { version = "4.0.0", path = "../metadata", default-features = false, optional = true } +ink_prelude = { version = "4.0.0", path = "../prelude", default-features = false } +ink_lang_macro = { version = "4.0.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.2.0", path = "ir" } -ink_metadata = { version = "3.2.0", default-features = false, path = "../metadata" } +ink_lang_ir = { version = "4.0.0", path = "ir" } +ink_metadata = { version = "4.0.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 46b771c02a3..dc8de56401c 100644 --- a/crates/lang/codegen/Cargo.toml +++ b/crates/lang/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_codegen" -version = "3.2.0" +version = "4.0.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.2.0", package = "ink_lang_ir", path = "../ir", default-features = false } +ir = { version = "4.0.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 d4c67874efc..aaf91ca49e1 100644 --- a/crates/lang/ir/Cargo.toml +++ b/crates/lang/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_ir" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/lang/macro/Cargo.toml b/crates/lang/macro/Cargo.toml index 033ba02ba16..9cf13db2980 100644 --- a/crates/lang/macro/Cargo.toml +++ b/crates/lang/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_lang_macro" -version = "3.2.0" +version = "4.0.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.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 } +ink_lang_ir = { version = "4.0.0", path = "../ir", default-features = false } +ink_lang_codegen = { version = "4.0.0", path = "../codegen", default-features = false } +ink_primitives = { version = "4.0.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.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 = ".." } +ink_metadata = { version = "4.0.0", path = "../../metadata/" } +ink_env = { version = "4.0.0", path = "../../env/" } +ink_storage = { version = "4.0.0", path = "../../storage/" } +ink_lang = { version = "4.0.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 e9e780945f2..c8af6ab68cb 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_metadata" -version = "3.2.0" +version = "4.0.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.2.0", path = "../prelude/", default-features = false } -ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } +ink_prelude = { version = "4.0.0", path = "../prelude/", default-features = false } +ink_primitives = { version = "4.0.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 62cff59607a..051ce919f43 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_prelude" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2021" diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 63ab4f06eb5..bf5ad2b01f5 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_primitives" -version = "3.2.0" +version = "4.0.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.2.0", path = "../prelude/", default-features = false } +ink_prelude = { version = "4.0.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 fa4f6832a0c..3b7f38ee281 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage" -version = "3.2.0" +version = "4.0.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.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 } +ink_env = { version = "4.0.0", path = "../env/", default-features = false } +ink_metadata = { version = "4.0.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } +ink_primitives = { version = "4.0.0", path = "../primitives/", default-features = false } +ink_storage_derive = { version = "4.0.0", path = "derive", default-features = false } +ink_prelude = { version = "4.0.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.2.0", path = "../lang/", default-features = false } +ink_lang = { version = "4.0.0", path = "../lang/", default-features = false } [features] default = ["std"] diff --git a/crates/storage/derive/Cargo.toml b/crates/storage/derive/Cargo.toml index 66ba233965b..ac4ee160589 100644 --- a/crates/storage/derive/Cargo.toml +++ b/crates/storage/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ink_storage_derive" -version = "3.2.0" +version = "4.0.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.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 = ".." } +ink_env = { version = "4.0.0", path = "../../env" } +ink_primitives = { version = "4.0.0", path = "../../primitives" } +ink_metadata = { version = "4.0.0", path = "../../metadata" } +ink_prelude = { version = "4.0.0", path = "../../prelude/" } +ink_storage = { version = "4.0.0", path = ".." } diff --git a/examples/contract-terminate/Cargo.toml b/examples/contract-terminate/Cargo.toml index 93037a5da10..d770287563a 100644 --- a/examples/contract-terminate/Cargo.toml +++ b/examples/contract-terminate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_terminate" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/contract-transfer/Cargo.toml b/examples/contract-transfer/Cargo.toml index c5683626fa4..e7ceba8442c 100644 --- a/examples/contract-transfer/Cargo.toml +++ b/examples/contract-transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract_transfer" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/Cargo.toml b/examples/delegator/Cargo.toml index 003547185ec..46b2b28f096 100644 --- a/examples/delegator/Cargo.toml +++ b/examples/delegator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "delegator" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/delegator/accumulator/Cargo.toml b/examples/delegator/accumulator/Cargo.toml index 2423ea2e81f..6ca649b2413 100644 --- a/examples/delegator/accumulator/Cargo.toml +++ b/examples/delegator/accumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accumulator" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/adder/Cargo.toml b/examples/delegator/adder/Cargo.toml index bd54fbd9a72..83dd297bea6 100644 --- a/examples/delegator/adder/Cargo.toml +++ b/examples/delegator/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adder" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/delegator/subber/Cargo.toml b/examples/delegator/subber/Cargo.toml index 4376c7b6ad0..09c16113370 100644 --- a/examples/delegator/subber/Cargo.toml +++ b/examples/delegator/subber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subber" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" diff --git a/examples/dns/Cargo.toml b/examples/dns/Cargo.toml index 67945cf0595..a0e42ea6f1c 100644 --- a/examples/dns/Cargo.toml +++ b/examples/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dns" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc1155/Cargo.toml b/examples/erc1155/Cargo.toml index 59e800b444e..da77b4fdef4 100644 --- a/examples/erc1155/Cargo.toml +++ b/examples/erc1155/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc1155" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc20/Cargo.toml b/examples/erc20/Cargo.toml index 1125b46212d..19a0a63e186 100644 --- a/examples/erc20/Cargo.toml +++ b/examples/erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc20" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/erc721/Cargo.toml b/examples/erc721/Cargo.toml index 90ee3bdbaa6..e85a75eaac9 100644 --- a/examples/erc721/Cargo.toml +++ b/examples/erc721/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erc721" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/flipper/Cargo.toml b/examples/flipper/Cargo.toml index 2117d38f5eb..3569f882802 100644 --- a/examples/flipper/Cargo.toml +++ b/examples/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/incrementer/Cargo.toml b/examples/incrementer/Cargo.toml index 46b62df511f..a88bff35e20 100644 --- a/examples/incrementer/Cargo.toml +++ b/examples/incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "incrementer" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/multisig/Cargo.toml b/examples/multisig/Cargo.toml index 1346bf63910..c1120eb8cf5 100755 --- a/examples/multisig/Cargo.toml +++ b/examples/multisig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/rand-extension/Cargo.toml b/examples/rand-extension/Cargo.toml index 58808a267b1..dd2ca964fa0 100755 --- a/examples/rand-extension/Cargo.toml +++ b/examples/rand-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_extension" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-erc20/Cargo.toml b/examples/trait-erc20/Cargo.toml index d328b24cf56..7664304798f 100644 --- a/examples/trait-erc20/Cargo.toml +++ b/examples/trait-erc20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_erc20" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-flipper/Cargo.toml b/examples/trait-flipper/Cargo.toml index ccdfcc532a9..edb8f8dda69 100644 --- a/examples/trait-flipper/Cargo.toml +++ b/examples/trait-flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait_flipper" -version = "3.2.0" +version = "4.0.0" authors = ["Parity Technologies "] edition = "2021" publish = false diff --git a/examples/trait-incrementer/Cargo.toml b/examples/trait-incrementer/Cargo.toml index 6f9c5a43131..70c70777dce 100644 --- a/examples/trait-incrementer/Cargo.toml +++ b/examples/trait-incrementer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trait-incrementer" -version = "3.2.0" +version = "4.0.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 68b43066406..4c78c50d1b5 100644 --- a/examples/trait-incrementer/traits/Cargo.toml +++ b/examples/trait-incrementer/traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "traits" -version = "3.2.0" +version = "4.0.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 53f65f0b75b..61d672af1c6 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.2.0" +version = "4.0.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 d1d3d5abc07..403ce90dfdd 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.2.0" +version = "4.0.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 b607befb9f4..744de6a0107 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.2.0" +version = "4.0.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 96430ba8cf4..c637c8b90d2 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.2.0" +version = "4.0.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 71578227cc0..2406c0f44e6 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.2.0" +version = "4.0.0" edition = "2021" authors = ["Parity Technologies "] publish = false