Skip to content

Commit

Permalink
Merge pull request #475 from TheWaWaR/bump-up-to-v1.0.0
Browse files Browse the repository at this point in the history
chore: bump ckb-cli to v1.0.0
  • Loading branch information
TheWaWaR authored Jun 29, 2022
2 parents 3abc574 + d7d6381 commit 8c6538e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.103.0
# v1.0.0
* Update ckb from `v0.101.3` to `v0.103.0`
* Remove `ckb-sdk` from `ckb-cli` and created as an [standalone repository](https://github.com/nervosnetwork/ckb-sdk-rust)
* Add `ckb-signer` sub-crate for keystore implementation
Expand All @@ -9,10 +9,15 @@
- `dao withdraw`
* Replace `tx-fee` argument with `fee-rate` argument and the default value is `1000`'
* Refactor `AddressParser`
* Implement `CellCollector` for `ckb-cli/ckb-index`
* Implement `Signer` for `PrivkeyWrapper` and `KeyStoreHandler`
* Add [`sudt`][sudt-wiki] subcommand
* Short address use ckb2021 address format

* * * * *

# v0.15.0
* Compatible with ckb-v0.15.z
* Use rocksdb as index database backend
* Add web3 v3 keystore support


[sudt-wiki]: https://github.com/nervosnetwork/ckb-cli/wiki/UDT-(sudt)-Operations-Tutorial
6 changes: 3 additions & 3 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-cli"
version = "0.103.0"
version = "1.0.0"
license = "MIT"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -17,10 +17,10 @@ ckb-error = "=0.103.0"
ckb-script = "=0.103.0"
ckb-chain-spec = "=0.103.0"
ckb-mock-tx-types = "0.3.0"
ckb-sdk = "1.0.0"
ckb-sdk = "1.0.1"
ckb-signer = { path = "ckb-signer", version = "0.1.0" }
ckb-index = { path = "ckb-index", version = "=0.103.0" }
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=0.103.0" }
ckb-index = { path = "ckb-index", version = "=1.0.0" }
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=1.0.0" }
jsonrpc-core-client = "18"
jsonrpc-core = "18"
jsonrpc-derive = "18"
Expand Down
2 changes: 1 addition & 1 deletion ckb-index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-index"
version = "0.103.0"
version = "1.0.0"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions plugin-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-cli-plugin-protocol"
version = "0.103.0"
version = "1.0.0"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ description = "ckb-cli plugin protocol"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-index = { path = "../ckb-index", version = "=0.103.0" }
ckb-index = { path = "../ckb-index", version = "=1.0.0" }
ckb-types = "=0.103.0"
ckb-jsonrpc-types = "=0.103.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-cli-test"
version = "0.103.0"
version = "1.0.0"
authors = ["Linfeng Qian <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 8c6538e

Please sign in to comment.