Skip to content

Commit

Permalink
Final pallet release (polkadot-evm#443)
Browse files Browse the repository at this point in the history
* frame-evm: release v5.0.0

* fp-storage: release v2.0.0

* pallet-ethereum: release v3.0.0

* pallet-dynamic-fee: release v3.0.0

* Check-in cargo lock
  • Loading branch information
sorpaas authored Aug 8, 2021
1 parent d5bc53e commit 61bdbb3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frame/dynamic-fee/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "pallet-dynamic-fee"
version = "3.0.0-dev"
version = "3.0.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"
description = "Dynamic fee handling for EVM."
license = "Apache-2.0"

[dependencies]
pallet-evm = { path = "../evm", version = "5.0.0-dev", default-features = false }
pallet-evm = { path = "../evm", version = "5.0.0", 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" }
Expand Down
6 changes: 3 additions & 3 deletions frame/ethereum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-ethereum"
version = "3.0.0-dev"
version = "3.0.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"
description = "Ethereum compatibility full block processing emulation pallet for Substrate."
Expand All @@ -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 = "5.0.0-dev", default-features = false, path = "../evm" }
pallet-evm = { version = "5.0.0", 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" }
Expand All @@ -27,7 +27,7 @@ sha3 = { version = "0.8", default-features = false }
libsecp256k1 = { version = "0.5", default-features = false, features = ["static-context", "hmac"] }
fp-consensus = { version = "1.0.0", path = "../../primitives/consensus", default-features = false }
fp-rpc = { version = "2.0.0", path = "../../primitives/rpc", default-features = false }
fp-storage = { version = "2.0.0-dev", path = "../../primitives/storage", default-features = false}
fp-storage = { version = "2.0.0", path = "../../primitives/storage", default-features = false}

[dev-dependencies]
sp-core = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "frontier" }
Expand Down
2 changes: 1 addition & 1 deletion frame/evm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm"
version = "5.0.0-dev"
version = "5.0.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion primitives/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fp-storage"
version = "2.0.0-dev"
version = "2.0.0"
authors = ["Parity Technologies <[email protected]"]
edition = "2018"
description = "Storage primitives for Ethereum RPC (web3) compatibility layer for Substrate."
Expand Down

0 comments on commit 61bdbb3

Please sign in to comment.