diff --git a/Cargo.lock b/Cargo.lock index 392d4c0e37..045fdc382d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -799,7 +799,7 @@ dependencies = [ [[package]] name = "darwinia-balances" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-support", "frame-benchmarking", @@ -816,7 +816,7 @@ dependencies = [ [[package]] name = "darwinia-claims" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-support", @@ -838,7 +838,7 @@ dependencies = [ [[package]] name = "darwinia-elections-phragmen" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-support", @@ -857,7 +857,7 @@ dependencies = [ [[package]] name = "darwinia-eth-backing" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-eth-relay", @@ -902,7 +902,7 @@ dependencies = [ [[package]] name = "darwinia-eth-relay" -version = "0.5.0" +version = "0.5.1" dependencies = [ "eth-primitives", "ethash", @@ -938,7 +938,7 @@ dependencies = [ [[package]] name = "darwinia-phragmen" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-support", "rand 0.7.3", @@ -951,7 +951,7 @@ dependencies = [ [[package]] name = "darwinia-staking" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-phragmen", @@ -973,7 +973,7 @@ dependencies = [ [[package]] name = "darwinia-support" -version = "0.5.0" +version = "0.5.1" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -985,7 +985,7 @@ dependencies = [ [[package]] name = "darwinia-treasury" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-support", @@ -1001,7 +1001,7 @@ dependencies = [ [[package]] name = "darwinia-vesting" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-support", @@ -1107,7 +1107,7 @@ dependencies = [ [[package]] name = "eth-primitives" -version = "0.5.0" +version = "0.5.1" dependencies = [ "ethbloom 0.8.1 (git+https://github.com/darwinia-network/parity-common.git)", "ethereum-types 0.8.0 (git+https://github.com/darwinia-network/parity-common.git)", @@ -2968,7 +2968,7 @@ checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" [[package]] name = "merkle-patricia-trie" -version = "0.5.0" +version = "0.5.1" dependencies = [ "criterion", "ethereum-types 0.5.2", @@ -3098,7 +3098,7 @@ dependencies = [ [[package]] name = "node-template" -version = "0.5.0" +version = "0.5.1" dependencies = [ "futures 0.3.4", "log", @@ -3128,7 +3128,7 @@ dependencies = [ [[package]] name = "node-template-runtime" -version = "0.5.0" +version = "0.5.1" dependencies = [ "darwinia-balances", "darwinia-claims", diff --git a/bin/node-template/node/Cargo.toml b/bin/node-template/node/Cargo.toml index d78dabf002..80e8958ac8 100644 --- a/bin/node-template/node/Cargo.toml +++ b/bin/node-template/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-template" -version = "0.5.0" +version = "0.5.1" authors = ["Anonymous"] edition = "2018" license = "Unlicense" diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index e79387b9e9..cab8673eb7 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-template-runtime" -version = "0.5.0" +version = "0.5.1" authors = ["Anonymous"] edition = "2018" license = "Unlicense" diff --git a/frame/balances/Cargo.toml b/frame/balances/Cargo.toml index 3c5eb3511f..f0106e58f7 100644 --- a/frame/balances/Cargo.toml +++ b/frame/balances/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-balances" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet to manage RING" edition = "2018" diff --git a/frame/chainrelay/eth/backing/Cargo.toml b/frame/chainrelay/eth/backing/Cargo.toml index 947d832805..d52b442720 100644 --- a/frame/chainrelay/eth/backing/Cargo.toml +++ b/frame/chainrelay/eth/backing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-eth-backing" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet to backing Ethereum assets" edition = "2018" diff --git a/frame/chainrelay/eth/relay/Cargo.toml b/frame/chainrelay/eth/relay/Cargo.toml index c194633e16..1ea5c27103 100644 --- a/frame/chainrelay/eth/relay/Cargo.toml +++ b/frame/chainrelay/eth/relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-eth-relay" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet to relay Ethereum headers" edition = "2018" diff --git a/frame/claims/Cargo.toml b/frame/claims/Cargo.toml index e8a86334a2..71fca7571d 100644 --- a/frame/claims/Cargo.toml +++ b/frame/claims/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-claims" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME to claim airdrop" edition = "2018" diff --git a/frame/elections-phragmen/Cargo.toml b/frame/elections-phragmen/Cargo.toml index 73533a43bc..5c0f7d9f84 100644 --- a/frame/elections-phragmen/Cargo.toml +++ b/frame/elections-phragmen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-elections-phragmen" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME election pallet for PHRAGMEN" edition = "2018" diff --git a/frame/staking/Cargo.toml b/frame/staking/Cargo.toml index 3b06b106a2..baf88b8e97 100644 --- a/frame/staking/Cargo.toml +++ b/frame/staking/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-staking" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet staking" edition = "2018" diff --git a/frame/support/Cargo.toml b/frame/support/Cargo.toml index 8ea7472e85..1bb51dfa32 100644 --- a/frame/support/Cargo.toml +++ b/frame/support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-support" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "Support code for Darwinia runtime" edition = "2018" diff --git a/frame/treasury/Cargo.toml b/frame/treasury/Cargo.toml index 42643f57f6..6b76092caa 100644 --- a/frame/treasury/Cargo.toml +++ b/frame/treasury/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-treasury" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet to manage treasury" edition = "2018" diff --git a/frame/vesting/Cargo.toml b/frame/vesting/Cargo.toml index 8a61d70ded..3711f42108 100644 --- a/frame/vesting/Cargo.toml +++ b/frame/vesting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-vesting" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "FRAME pallet for manage vesting" edition = "2018" diff --git a/primitives/eth-primitives/Cargo.toml b/primitives/eth-primitives/Cargo.toml index a97b99659e..0700a8a412 100644 --- a/primitives/eth-primitives/Cargo.toml +++ b/primitives/eth-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eth-primitives" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "Ethereum primitives for Darwinia Relay" edition = "2018" diff --git a/primitives/merkle-patricia-trie/Cargo.toml b/primitives/merkle-patricia-trie/Cargo.toml index 1d438256d8..fc6aae96d1 100644 --- a/primitives/merkle-patricia-trie/Cargo.toml +++ b/primitives/merkle-patricia-trie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "merkle-patricia-trie" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "Merkle-Patricia Trie (Ethereum Style)" edition = "2018" diff --git a/primitives/phragmen/Cargo.toml b/primitives/phragmen/Cargo.toml index 57c471948f..9738d6ca32 100644 --- a/primitives/phragmen/Cargo.toml +++ b/primitives/phragmen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darwinia-phragmen" -version = "0.5.0" +version = "0.5.1" authors = ["Darwinia Network "] description = "PHRAGMENT primitives" edition = "2018"