diff --git a/Cargo.lock b/Cargo.lock index 0da8f25b22426..76fa33d659078 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4463,7 +4463,7 @@ dependencies = [ [[package]] name = "pallet-contracts" -version = "2.0.0" +version = "3.0.0-rc1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -4491,7 +4491,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" -version = "2.0.0" +version = "3.0.0-rc1" dependencies = [ "bitflags", "parity-scale-codec", @@ -4501,7 +4501,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc" -version = "0.8.0" +version = "3.0.0-rc1" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4520,7 +4520,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc-runtime-api" -version = "0.8.0" +version = "3.0.0-rc1" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index e396b2dcefff5..6115a282c99a1 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -78,7 +78,7 @@ sc-authority-discovery = { version = "0.8.0", path = "../../../client/authority # frame dependencies pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" } -pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } +pallet-contracts = { version = "3.0.0-rc1", path = "../../../frame/contracts" } frame-system = { version = "2.0.0", path = "../../../frame/system" } pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" } diff --git a/bin/node/executor/Cargo.toml b/bin/node/executor/Cargo.toml index f7bef798e4d02..716ecdf89c05e 100644 --- a/bin/node/executor/Cargo.toml +++ b/bin/node/executor/Cargo.toml @@ -30,7 +30,7 @@ frame-support = { version = "2.0.0", path = "../../../frame/support" } frame-system = { version = "2.0.0", path = "../../../frame/system" } node-testing = { version = "2.0.0", path = "../testing" } pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } -pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } +pallet-contracts = { version = "3.0.0-rc1", path = "../../../frame/contracts" } pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" } pallet-im-online = { version = "2.0.0", path = "../../../frame/im-online" } pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } diff --git a/bin/node/rpc/Cargo.toml b/bin/node/rpc/Cargo.toml index 10d7fe80d7ce9..b19f7475281cd 100644 --- a/bin/node/rpc/Cargo.toml +++ b/bin/node/rpc/Cargo.toml @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"] jsonrpc-core = "15.1.0" node-primitives = { version = "2.0.0", path = "../primitives" } node-runtime = { version = "2.0.0", path = "../runtime" } -pallet-contracts-rpc = { version = "0.8.0", path = "../../../frame/contracts/rpc/" } +pallet-contracts-rpc = { version = "3.0.0-rc1", path = "../../../frame/contracts/rpc/" } pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" } sc-client-api = { version = "2.0.0", path = "../../../client/api" } sc-consensus-babe = { version = "0.8.0", path = "../../../client/consensus/babe" } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index 2bad2db510be4..48ac23437b87d 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -48,9 +48,9 @@ pallet-authorship = { version = "2.0.0", default-features = false, path = "../.. pallet-babe = { version = "2.0.0", default-features = false, path = "../../../frame/babe" } pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" } pallet-collective = { version = "2.0.0", default-features = false, path = "../../../frame/collective" } -pallet-contracts = { version = "2.0.0", default-features = false, path = "../../../frame/contracts" } -pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../../frame/contracts/common/" } -pallet-contracts-rpc-runtime-api = { version = "0.8.0", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" } +pallet-contracts = { version = "3.0.0-rc1", default-features = false, path = "../../../frame/contracts" } +pallet-contracts-primitives = { version = "3.0.0-rc1", default-features = false, path = "../../../frame/contracts/common/" } +pallet-contracts-rpc-runtime-api = { version = "3.0.0-rc1", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" } pallet-democracy = { version = "2.0.0", default-features = false, path = "../../../frame/democracy" } pallet-elections-phragmen = { version = "2.0.0", default-features = false, path = "../../../frame/elections-phragmen" } pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" } diff --git a/bin/node/testing/Cargo.toml b/bin/node/testing/Cargo.toml index bc1f07645eed9..c9e818f936630 100644 --- a/bin/node/testing/Cargo.toml +++ b/bin/node/testing/Cargo.toml @@ -18,7 +18,7 @@ sc-service = { version = "0.8.0", features = ["test-helpers", "db"], path = ".. sc-client-db = { version = "0.8.0", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] } sc-client-api = { version = "2.0.0", path = "../../../client/api/" } codec = { package = "parity-scale-codec", version = "1.3.4" } -pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } +pallet-contracts = { version = "3.0.0-rc1", path = "../../../frame/contracts" } pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" } pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" } diff --git a/frame/contracts/Cargo.toml b/frame/contracts/Cargo.toml index ffcb37385849a..fc1b049543698 100644 --- a/frame/contracts/Cargo.toml +++ b/frame/contracts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts" -version = "2.0.0" +version = "3.0.0-rc1" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -17,7 +17,6 @@ codec = { package = "parity-scale-codec", version = "1.3.4", default-features = frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true } frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-system = { version = "2.0.0", default-features = false, path = "../system" } -pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "common" } parity-wasm = { version = "0.41.0", default-features = false } pwasm-utils = { version = "0.14.0", default-features = false } serde = { version = "1.0.101", optional = true, features = ["derive"] } @@ -28,6 +27,8 @@ sp-std = { version = "2.0.0", default-features = false, path = "../../primitives sp-sandbox = { version = "0.8.0", default-features = false, path = "../../primitives/sandbox" } wasmi-validation = { version = "0.3.0", default-features = false } +pallet-contracts-primitives = { version = "3.0.0-rc1", default-features = false, path = "common" } + [dev-dependencies] assert_matches = "1.3.0" hex-literal = "0.3.1" diff --git a/frame/contracts/common/Cargo.toml b/frame/contracts/common/Cargo.toml index e87cad055aff5..76b9366eaf0ff 100644 --- a/frame/contracts/common/Cargo.toml +++ b/frame/contracts/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-primitives" -version = "2.0.0" +version = "3.0.0-rc1" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/frame/contracts/rpc/Cargo.toml b/frame/contracts/rpc/Cargo.toml index 362e298102a0e..eea371b6bbe09 100644 --- a/frame/contracts/rpc/Cargo.toml +++ b/frame/contracts/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-rpc" -version = "0.8.0" +version = "3.0.0-rc1" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -23,8 +23,9 @@ sp-rpc = { version = "2.0.0", path = "../../../primitives/rpc" } serde = { version = "1.0.101", features = ["derive"] } sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-api = { version = "2.0.0", path = "../../../primitives/api" } -pallet-contracts-primitives = { version = "2.0.0", path = "../common" } -pallet-contracts-rpc-runtime-api = { version = "0.8.0", path = "./runtime-api" } + +pallet-contracts-primitives = { version = "3.0.0-rc1", path = "../common" } +pallet-contracts-rpc-runtime-api = { version = "3.0.0-rc1", path = "./runtime-api" } [dev-dependencies] serde_json = "1.0.41" diff --git a/frame/contracts/rpc/runtime-api/Cargo.toml b/frame/contracts/rpc/runtime-api/Cargo.toml index 04becf2b45f49..8b66dd95e4536 100644 --- a/frame/contracts/rpc/runtime-api/Cargo.toml +++ b/frame/contracts/rpc/runtime-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-contracts-rpc-runtime-api" -version = "0.8.0" +version = "3.0.0-rc1" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -17,7 +17,8 @@ sp-api = { version = "2.0.0", default-features = false, path = "../../../../prim codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] } sp-std = { version = "2.0.0", default-features = false, path = "../../../../primitives/std" } sp-runtime = { version = "2.0.0", default-features = false, path = "../../../../primitives/runtime" } -pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../common" } + +pallet-contracts-primitives = { version = "3.0.0-rc1", default-features = false, path = "../../common" } [features] default = ["std"]