Skip to content

Commit

Permalink
Merge pull request #227 from TheWaWaR/update-ckb-to-v0.27.0
Browse files Browse the repository at this point in the history
chore: Update ckb dependency to v0.27.0
  • Loading branch information
doitian authored Jan 10, 2020
2 parents 68cbb44 + ef20a7c commit 755dc84
Show file tree
Hide file tree
Showing 7 changed files with 307 additions and 299 deletions.
540 changes: 274 additions & 266 deletions Cargo.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "ckb-cli"
version = "0.26.1"
version = "0.27.0"
license = "MIT"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2018"

[dependencies]
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1", features = ["secp"] }
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-util = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1", features = ["secp"] }
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-util = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-sdk = { path = "ckb-sdk" }
ckb-index = { path = "ckb-index" }
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-dao-utils = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-dao-utils = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }

jsonrpc-client-core = "0.5.0"
secp256k1 = {version = "0.15.0" }
Expand Down Expand Up @@ -51,7 +51,7 @@ tui = "0.6.0"
termion = "1.5"

[build-dependencies]
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }

[workspace]
members = ["ckb-sdk", "ckb-index", "ckb-sdk-types"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ci: fmt clippy test security-audit
git diff --exit-code Cargo.lock

integration:
bash devtools/ci/integration.sh v0.26.1-rc1
bash devtools/ci/integration.sh v0.27.0-rc1

prod: ## Build binary with release profile.
cargo build --release
Expand Down
4 changes: 2 additions & 2 deletions ckb-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-index"
version = "0.26.1"
version = "0.27.0"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -11,7 +11,7 @@ serde_derive = "1.0"
bincode = "1.1.4"
log = "0.4.6"
failure = "0.1.5"
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-sdk = { path = "../ckb-sdk" }

[dependencies.rocksdb]
Expand Down
14 changes: 7 additions & 7 deletions ckb-sdk-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-sdk-types"
version = "0.26.1"
version = "0.27.0"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -9,14 +9,14 @@ license = "MIT"
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"

ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-script = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1", default-features = false }
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-error = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-script = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1", default-features = false }
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-error = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }

[dev-dependencies]
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1", features = ["secp"] }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1", features = ["secp"] }

[features]
default = ["ckb-script/default"]
Expand Down
14 changes: 7 additions & 7 deletions ckb-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-sdk"
version = "0.26.1"
version = "0.27.0"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -27,10 +27,10 @@ chrono = "0.4.6"
failure = "0.1.5"
lazy_static = "1.4.0"

ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-script = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1", features = ["secp"] }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-script = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1", features = ["secp"] }
ckb-sdk-types = { path = "../ckb-sdk-types" }
12 changes: 6 additions & 6 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli-test"
version = "0.26.1"
version = "0.27.0"
authors = ["Linfeng Qian <[email protected]>"]
edition = "2018"

Expand All @@ -13,11 +13,11 @@ log = "0.4"
env_logger = "0.6"
toml = "0.5.0"
ckb-sdk = { path = "../ckb-sdk" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-app-config = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-chain-spec = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1", features = ["secp"] }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.26.1-rc1" }
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-app-config = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-chain-spec = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1", features = ["secp"] }
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.27.0-rc1" }
regex = "1.1.6"

# Prevent this from interfering with workspaces
Expand Down

0 comments on commit 755dc84

Please sign in to comment.