Skip to content

Commit 754327e

Browse files
committed
Fix more missing version bumps in frame
1 parent 64ae193 commit 754327e

File tree

10 files changed

+17
-20
lines changed

10 files changed

+17
-20
lines changed

Cargo.lock

+5-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/rpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ sc-service = { version = "0.9.0", git = "https://github.com/paritytech/substrate
3030
sc-client-api = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
3131
sc-rpc = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
3232
sc-network = { version = "0.9.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
33-
pallet-evm = { version = "3.0.1-dev", path = "../../frame/evm" }
33+
pallet-evm = { version = "4.0.0-dev", path = "../../frame/evm" }
3434
fp-evm = { version = "2.0.0-dev", path = "../../primitives/evm" }
3535
pallet-ethereum = { version = "2.0.0-dev", path = "../../frame/ethereum" }
3636
ethereum = { version = "0.7.1", features = ["with-codec"] }

frame/dynamic-fee/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "pallet-dynamic-fee"
3-
version = "1.0.1-dev"
3+
version = "2.0.0-dev"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
description = "Dynamic fee handling for EVM."
77
license = "Apache-2.0"
88

99
[dependencies]
10-
pallet-evm = { path = "../evm", version = "3.0.1-dev", default-features = false }
10+
pallet-evm = { path = "../evm", version = "4.0.0-dev", default-features = false }
1111
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
1212
serde = { version = "1.0.101", optional = true }
1313
sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }

frame/ethereum/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ frame-support = { version = "3.0.0", default-features = false, git = "https://gi
1414
frame-system = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1515
pallet-balances = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1616
pallet-timestamp = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
17-
pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../evm" }
17+
pallet-evm = { version = "4.0.0-dev", default-features = false, path = "../evm" }
1818
sp-runtime = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1919
sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
2020
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 }
2626
sha3 = { version = "0.8", default-features = false }
2727
libsecp256k1 = { version = "0.3", default-features = false }
2828
fp-consensus = { version = "1.0.0", path = "../../primitives/consensus", default-features = false }
29-
fp-rpc = { version = "2.0.0-dev", path = "../../primitives/rpc", default-features = false }
30-
fp-storage = { version = "1.0.1-dev", path = "../../primitives/storage", default-features = false}
29+
fp-rpc = { version = "2.0.0", path = "../../primitives/rpc", default-features = false }
30+
fp-storage = { version = "1.0.1", path = "../../primitives/storage", default-features = false}
3131

3232
[dev-dependencies]
3333
sp-core = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }

frame/evm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-evm"
3-
version = "3.0.1-dev"
3+
version = "4.0.0-dev"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -23,7 +23,7 @@ sp-core = { version = "3.0.0", default-features = false, git = "https://github.c
2323
sp-runtime = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
2424
sp-std = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
2525
sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
26-
fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../primitives/evm" }
26+
fp-evm = { version = "2.0.0", default-features = false, path = "../../primitives/evm" }
2727
primitive-types = { version = "0.9.0", default-features = false, features = ["rlp", "byteorder"] }
2828
rlp = { version = "0.5", default-features = false }
2929
evm = { version = "0.27.0", default-features = false, features = ["with-codec"] }

frame/evm/precompile/curve25519/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ description = "Curve25519 elliptic curve precompiles for EVM pallet."
1313
sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1414
sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1515
frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
16-
pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../.." }
1716
fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/evm" }
1817
evm = { version = "0.27.0", default-features = false, features = ["with-codec"] }
1918
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
@@ -29,7 +28,6 @@ std = [
2928
"sp-core/std",
3029
"sp-io/std",
3130
"frame-support/std",
32-
"pallet-evm/std",
3331
"fp-evm/std",
3432
"evm/std",
3533
"codec/std",

frame/evm/precompile/dispatch/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "DISPATCH precompiles for EVM pallet."
1212
sp-core = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1313
sp-io = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
1414
frame-support = { version = "3.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
15-
pallet-evm = { version = "3.0.1-dev", default-features = false, path = "../.." }
15+
pallet-evm = { version = "4.0.0-dev", default-features = false, path = "../.." }
1616
fp-evm = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/evm" }
1717
evm = { version = "0.27.0", default-features = false, features = ["with-codec"] }
1818
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }

frame/evm/precompile/ed25519/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-evm-precompile-ed25519"
3-
version = "1.0.1-dev"
3+
version = "2.0.0-dev"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

frame/evm/precompile/sha3fips/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-evm-precompile-sha3fips"
3-
version = "1.0.1-dev"
3+
version = "2.0.0-dev"
44
authors = ["Parity Technologies <[email protected]>", "Drew Stone <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

frame/evm/precompile/simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-evm-precompile-simple"
3-
version = "1.0.1-dev"
3+
version = "2.0.0-dev"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)