Skip to content

Commit

Permalink
Companion for #210 (#488)
Browse files Browse the repository at this point in the history
* bump: version to 0.6.5

* update: use darwinia-common master

* update: dependencies

* update: types
  • Loading branch information
AurevoirXavier authored Aug 6, 2020
1 parent e7cf1f3 commit d1a9882
Show file tree
Hide file tree
Showing 10 changed files with 74 additions and 73 deletions.
73 changes: 36 additions & 37 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ path = "src/main.rs"

[package]
name = "darwinia"
version = "0.6.4"
version = "0.6.5"
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia node implementation in Rust"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darwinia-cli"
version = "0.6.4"
version = "0.6.5"
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia Client Node"
edition = "2018"
Expand Down Expand Up @@ -38,7 +38,7 @@ substrate-browser-utils = { optional = true, git = "https://github.com/darwinia-
# substrate primitives
sp-core = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
# darwinia client
darwinia-cli = { optional = true, git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-cli = { optional = true, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
# darwinia service
darwinia-service = { default-features = false, path = "../service" }

Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darwinia-primitives"
version = "0.6.4"
version = "0.6.5"
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia node runtime primitives"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darwinia-rpc"
version = "0.6.4"
version = "0.6.5"
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia node rpc"
edition = "2018"
Expand All @@ -25,8 +25,8 @@ darwinia-primitives = { path = "../primitives" }
pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
# darwinia frame
darwinia-balances-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-staking-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-balances-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-staking-rpc = { git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
# substrate client
sc-client-api = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
Expand Down
8 changes: 4 additions & 4 deletions runtime/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darwinia-runtime-common"
version = "0.6.4"
version = "0.6.5"
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Darwinia node runtime common"
edition = "2018"
Expand All @@ -23,9 +23,9 @@ frame-system = { default-features = false, git = "https://github.com/darwinia-ne
pallet-authorship = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
pallet-transaction-payment = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "v2.0.0-rc.darwinia.3" }
# darwinia frame
darwinia-balances = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-staking = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-support = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", tag = "v0.6.4" }
darwinia-balances = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-staking = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }
darwinia-support = { default-features = false, git = "https://github.com/darwinia-network/darwinia-common.git", branch = "master" }

[features]
default = ["std"]
Expand Down
Loading

0 comments on commit d1a9882

Please sign in to comment.