Skip to content

Commit

Permalink
Bump version to v0.113.0 (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson authored Jan 10, 2024
1 parent 2b9408c commit 7d90799
Show file tree
Hide file tree
Showing 11 changed files with 505 additions and 155 deletions.
598 changes: 474 additions & 124 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions ckb-debugger-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-debugger-api"
description = "Standalone debugger for Nervos CKB"
version = "0.112.1"
version = "0.113.0"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -10,12 +10,12 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
ckb-hash = "=0.112.1"
ckb-chain-spec = "=0.112.1"
ckb-jsonrpc-types = "=0.112.1"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.112.1" }
ckb-script = { version = "=0.112.1", default-features = false }
ckb-types = "=0.112.1"
ckb-hash = "=0.113.0"
ckb-chain-spec = "=0.113.0"
ckb-jsonrpc-types = "=0.113.0"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.113.0" }
ckb-script = { version = "=0.113.0", default-features = false }
ckb-types = "=0.113.0"
ckb-vm = "=0.24.6"
hex = "0.4"
regex = "1"
Expand Down
20 changes: 10 additions & 10 deletions ckb-debugger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-debugger"
description = "Standalone debugger for Nervos CKB"
version = "0.112.1"
version = "0.113.0"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -13,17 +13,17 @@ probes = ["probe", "ckb-script/flatmemory"]

[dependencies]
clap = "2.33.0"
ckb-chain-spec = "=0.112.1"
ckb-debugger-api = { path = "../ckb-debugger-api", version="0.112.1" }
ckb-hash = "=0.112.1"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.112.1" }
ckb-script = { version = "=0.112.1", default-features = false }
ckb-types = "=0.112.1"
ckb-chain-spec = "=0.113.0"
ckb-debugger-api = { path = "../ckb-debugger-api", version="0.113.0" }
ckb-hash = "=0.113.0"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.113.0" }
ckb-script = { version = "=0.113.0", default-features = false }
ckb-types = "=0.113.0"
ckb-vm = { version = "=0.24.6" }
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version="0.112.1" }
ckb-vm-pprof = { path = "../ckb-vm-pprof", version="0.112.1" }
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version="0.113.0" }
ckb-vm-pprof = { path = "../ckb-vm-pprof", version="0.113.0" }
env_logger = "0.4.3"
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.112.1" }
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.113.0" }
gdbstub = "0.6.6"
gdbstub_arch = "0.2.4"
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ckb-debugger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For Rust library usage, refer to the included tests, they are quite self-explana
See the command line help part for usage on the binary debugger:

```text
ckb-debugger 0.112.1
ckb-debugger 0.113.0
USAGE:
ckb-debugger [FLAGS] [OPTIONS] --mode <mode> --tx-file <tx-file> [args]...
Expand Down
2 changes: 1 addition & 1 deletion ckb-gdb-remote-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-gdb-remote-protocol"
edition = "2021"
version = "0.112.1"
version = "0.113.0"
description = "An implementation of the GDB remote protocol"
authors = ["Ted Mielczarek <[email protected]>"]
license = "Apache-2.0/MIT"
Expand Down
8 changes: 4 additions & 4 deletions ckb-mock-tx-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "ckb-mock-tx-types"
description = "CKB mock transaction types"
version = "0.112.1"
version = "0.113.0"
license = "MIT"
edition = "2021"
authors = ["Nervos Core Dev <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-types = "=0.112.1"
ckb-jsonrpc-types = "=0.112.1"
ckb-traits = "=0.112.1"
ckb-types = "=0.113.0"
ckb-jsonrpc-types = "=0.113.0"
ckb-traits = "=0.113.0"
serde = { version = "1.0", features=["derive"] }
4 changes: 2 additions & 2 deletions ckb-vm-debug-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-debug-utils"
version = "0.112.1"
version = "0.113.0"
authors = ["Xuejie Xiao <[email protected]>"]
edition = "2021"
description = "Utils for ckb-debugger"
Expand All @@ -14,7 +14,7 @@ stdio = ["libc", "nix"]
byteorder = "1"
bytes = "1.0.0"
ckb-vm = "=0.24.6"
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.112.1" }
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.113.0" }
libc = { version = "0.2.47", optional = true }
log = "0.4.0"
nix = { version = "0.26.2", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions ckb-vm-pprof-converter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof-converter"
version = "0.112.1"
version = "0.113.0"
edition = "2021"
description = "Convert raw data generated by ckb-vm-pprof to proto format accepted by Google's pprof tool"
license = "MIT"
Expand All @@ -11,4 +11,4 @@ authors = ["Nervos Core Dev <[email protected]>"]
[dependencies]
clap = { version = "4.0.27", features = ["cargo"] }
protobuf = { version = "2.25.1", features = ["with-bytes", "with-serde"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.112.1" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.113.0" }
2 changes: 1 addition & 1 deletion ckb-vm-pprof-protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof-protos"
version = "0.112.1"
version = "0.113.0"
edition = "2021"
description = "Crate for generating Rust definitions from pprof proto"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion ckb-vm-pprof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof"
version = "0.112.1"
version = "0.113.0"
authors = ["mohanson <[email protected]>"]
edition = "2021"
description = "Statistical CKB script cycles consumption flame graph"
Expand Down
4 changes: 2 additions & 2 deletions ckb-vm-signal-profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-signal-profiler"
version = "0.112.1"
version = "0.113.0"
edition = "2021"
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"
license = "MIT"
Expand All @@ -18,4 +18,4 @@ log = "0.4.16"
nix = "0.23.1"
lazy_static = "1.4.0"
protobuf = { version = "2.25.1", features = ["with-bytes", "with-serde"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version="0.112.1" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version="0.113.0" }

0 comments on commit 7d90799

Please sign in to comment.