From 754327e3aa37ff8e056a89fafc5bbc0ef3392696 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Sat, 29 May 2021 12:54:53 +0200 Subject: [PATCH] Fix more missing version bumps in frame --- Cargo.lock | 11 +++++------ client/rpc/Cargo.toml | 2 +- frame/dynamic-fee/Cargo.toml | 4 ++-- frame/ethereum/Cargo.toml | 6 +++--- frame/evm/Cargo.toml | 4 ++-- frame/evm/precompile/curve25519/Cargo.toml | 2 -- frame/evm/precompile/dispatch/Cargo.toml | 2 +- frame/evm/precompile/ed25519/Cargo.toml | 2 +- frame/evm/precompile/sha3fips/Cargo.toml | 2 +- frame/evm/precompile/simple/Cargo.toml | 2 +- 10 files changed, 17 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ad681cd91..d2c9444d57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3876,7 +3876,7 @@ dependencies = [ [[package]] name = "pallet-dynamic-fee" -version = "1.0.1-dev" +version = "2.0.0-dev" dependencies = [ "frame-support", "frame-system", @@ -3919,7 +3919,7 @@ dependencies = [ [[package]] name = "pallet-evm" -version = "3.0.1-dev" +version = "4.0.0-dev" dependencies = [ "evm", "evm-gasometer", @@ -3972,7 +3972,6 @@ dependencies = [ "evm", "fp-evm", "frame-support", - "pallet-evm", "parity-scale-codec", "sp-core", "sp-io", @@ -3993,7 +3992,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-ed25519" -version = "1.0.1-dev" +version = "2.0.0-dev" dependencies = [ "ed25519-dalek", "evm", @@ -4017,7 +4016,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-sha3fips" -version = "1.0.1-dev" +version = "2.0.0-dev" dependencies = [ "evm", "fp-evm", @@ -4028,7 +4027,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-simple" -version = "1.0.1-dev" +version = "2.0.0-dev" dependencies = [ "evm", "fp-evm", diff --git a/client/rpc/Cargo.toml b/client/rpc/Cargo.toml index ccee3e31ec..ea1b26b7a4 100644 --- a/client/rpc/Cargo.toml +++ b/client/rpc/Cargo.toml @@ -30,7 +30,7 @@ sc-service = { version = "0.9.0", git = "https://github.com/paritytech/substrate sc-client-api = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-rpc = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sc-network = { version = "0.9.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } -pallet-evm = { version = "3.0.1-dev", path = "../../frame/evm" } +pallet-evm = { version = "4.0.0-dev", path = "../../frame/evm" } fp-evm = { version = "2.0.0-dev", path = "../../primitives/evm" } pallet-ethereum = { version = "2.0.0-dev", path = "../../frame/ethereum" } ethereum = { version = "0.7.1", features = ["with-codec"] } diff --git a/frame/dynamic-fee/Cargo.toml b/frame/dynamic-fee/Cargo.toml index dcbf12ca4d..96c86f6a09 100644 --- a/frame/dynamic-fee/Cargo.toml +++ b/frame/dynamic-fee/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "pallet-dynamic-fee" -version = "1.0.1-dev" +version = "2.0.0-dev" authors = ["Parity Technologies "] edition = "2018" description = "Dynamic fee handling for EVM." license = "Apache-2.0" [dependencies] -pallet-evm = { path = "../evm", version = "3.0.1-dev", default-features = false } +pallet-evm = { path = "../evm", version = "4.0.0-dev", default-features = false } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } serde = { version = "1.0.101", optional = true } sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } diff --git a/frame/ethereum/Cargo.toml b/frame/ethereum/Cargo.toml index 1aa1895c2b..0a30d92207 100644 --- a/frame/ethereum/Cargo.toml +++ b/frame/ethereum/Cargo.toml @@ -14,7 +14,7 @@ frame-support = { version = "3.0.0", default-features = false, git = "https://gi frame-system = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } pallet-balances = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } pallet-timestamp = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } -pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../evm" } +pallet-evm = { version = "4.0.0-dev", default-features = false, path = "../evm" } sp-runtime = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } @@ -26,8 +26,8 @@ rlp = { version = "0.5", default-features = false } sha3 = { version = "0.8", default-features = false } libsecp256k1 = { version = "0.3", default-features = false } fp-consensus = { version = "1.0.0", path = "../../primitives/consensus", default-features = false } -fp-rpc = { version = "2.0.0-dev", path = "../../primitives/rpc", default-features = false } -fp-storage = { version = "1.0.1-dev", path = "../../primitives/storage", default-features = false} +fp-rpc = { version = "2.0.0", path = "../../primitives/rpc", default-features = false } +fp-storage = { version = "1.0.1", path = "../../primitives/storage", default-features = false} [dev-dependencies] sp-core = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" } diff --git a/frame/evm/Cargo.toml b/frame/evm/Cargo.toml index 4675a3aecd..0dc7e99ede 100644 --- a/frame/evm/Cargo.toml +++ b/frame/evm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-evm" -version = "3.0.1-dev" +version = "4.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" @@ -23,7 +23,7 @@ sp-core = { version = "3.0.0", default-features = false, git = "https://github.c sp-runtime = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } -fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../primitives/evm" } +fp-evm = { version = "2.0.0", default-features = false, path = "../../primitives/evm" } primitive-types = { version = "0.9.0", default-features = false, features = ["rlp", "byteorder"] } rlp = { version = "0.5", default-features = false } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } diff --git a/frame/evm/precompile/curve25519/Cargo.toml b/frame/evm/precompile/curve25519/Cargo.toml index cfe92c5695..3796356a2f 100644 --- a/frame/evm/precompile/curve25519/Cargo.toml +++ b/frame/evm/precompile/curve25519/Cargo.toml @@ -13,7 +13,6 @@ description = "Curve25519 elliptic curve precompiles for EVM pallet." sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } -pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../.." } fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/evm" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } @@ -29,7 +28,6 @@ std = [ "sp-core/std", "sp-io/std", "frame-support/std", - "pallet-evm/std", "fp-evm/std", "evm/std", "codec/std", diff --git a/frame/evm/precompile/dispatch/Cargo.toml b/frame/evm/precompile/dispatch/Cargo.toml index 82510208ce..d8503411aa 100644 --- a/frame/evm/precompile/dispatch/Cargo.toml +++ b/frame/evm/precompile/dispatch/Cargo.toml @@ -12,7 +12,7 @@ description = "DISPATCH precompiles for EVM pallet." sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" } -pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../.." } +pallet-evm = { version = "4.0.0-dev", default-features = false, path = "../.." } fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/evm" } evm = { version = "0.27.0", default-features = false, features = ["with-codec"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false } diff --git a/frame/evm/precompile/ed25519/Cargo.toml b/frame/evm/precompile/ed25519/Cargo.toml index 0a4d596e64..7baac4d463 100644 --- a/frame/evm/precompile/ed25519/Cargo.toml +++ b/frame/evm/precompile/ed25519/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-evm-precompile-ed25519" -version = "1.0.1-dev" +version = "2.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0" diff --git a/frame/evm/precompile/sha3fips/Cargo.toml b/frame/evm/precompile/sha3fips/Cargo.toml index d45c538bb8..64f6586e34 100644 --- a/frame/evm/precompile/sha3fips/Cargo.toml +++ b/frame/evm/precompile/sha3fips/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-evm-precompile-sha3fips" -version = "1.0.1-dev" +version = "2.0.0-dev" authors = ["Parity Technologies ", "Drew Stone "] edition = "2018" license = "Apache-2.0" diff --git a/frame/evm/precompile/simple/Cargo.toml b/frame/evm/precompile/simple/Cargo.toml index 4786f777f3..d1a71c54be 100644 --- a/frame/evm/precompile/simple/Cargo.toml +++ b/frame/evm/precompile/simple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-evm-precompile-simple" -version = "1.0.1-dev" +version = "2.0.0-dev" authors = ["Parity Technologies "] edition = "2018" license = "Apache-2.0"