Skip to content

Commit 7d90799

Browse files
authored
Bump version to v0.113.0 (#123)
1 parent 2b9408c commit 7d90799

File tree

11 files changed

+505
-155
lines changed

11 files changed

+505
-155
lines changed

Cargo.lock

Lines changed: 474 additions & 124 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ckb-debugger-api/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ckb-debugger-api"
33
description = "Standalone debugger for Nervos CKB"
4-
version = "0.112.1"
4+
version = "0.113.0"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2021"
@@ -10,12 +10,12 @@ edition = "2021"
1010
crate-type = ["cdylib", "rlib"]
1111

1212
[dependencies]
13-
ckb-hash = "=0.112.1"
14-
ckb-chain-spec = "=0.112.1"
15-
ckb-jsonrpc-types = "=0.112.1"
16-
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.112.1" }
17-
ckb-script = { version = "=0.112.1", default-features = false }
18-
ckb-types = "=0.112.1"
13+
ckb-hash = "=0.113.0"
14+
ckb-chain-spec = "=0.113.0"
15+
ckb-jsonrpc-types = "=0.113.0"
16+
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.113.0" }
17+
ckb-script = { version = "=0.113.0", default-features = false }
18+
ckb-types = "=0.113.0"
1919
ckb-vm = "=0.24.6"
2020
hex = "0.4"
2121
regex = "1"

ckb-debugger/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ckb-debugger"
33
description = "Standalone debugger for Nervos CKB"
4-
version = "0.112.1"
4+
version = "0.113.0"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2021"
@@ -13,17 +13,17 @@ probes = ["probe", "ckb-script/flatmemory"]
1313

1414
[dependencies]
1515
clap = "2.33.0"
16-
ckb-chain-spec = "=0.112.1"
17-
ckb-debugger-api = { path = "../ckb-debugger-api", version="0.112.1" }
18-
ckb-hash = "=0.112.1"
19-
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.112.1" }
20-
ckb-script = { version = "=0.112.1", default-features = false }
21-
ckb-types = "=0.112.1"
16+
ckb-chain-spec = "=0.113.0"
17+
ckb-debugger-api = { path = "../ckb-debugger-api", version="0.113.0" }
18+
ckb-hash = "=0.113.0"
19+
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version="0.113.0" }
20+
ckb-script = { version = "=0.113.0", default-features = false }
21+
ckb-types = "=0.113.0"
2222
ckb-vm = { version = "=0.24.6" }
23-
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version="0.112.1" }
24-
ckb-vm-pprof = { path = "../ckb-vm-pprof", version="0.112.1" }
23+
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version="0.113.0" }
24+
ckb-vm-pprof = { path = "../ckb-vm-pprof", version="0.113.0" }
2525
env_logger = "0.4.3"
26-
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.112.1" }
26+
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.113.0" }
2727
gdbstub = "0.6.6"
2828
gdbstub_arch = "0.2.4"
2929
hex = "0.4"

ckb-debugger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For Rust library usage, refer to the included tests, they are quite self-explana
99
See the command line help part for usage on the binary debugger:
1010

1111
```text
12-
ckb-debugger 0.112.1
12+
ckb-debugger 0.113.0
1313
1414
USAGE:
1515
ckb-debugger [FLAGS] [OPTIONS] --mode <mode> --tx-file <tx-file> [args]...

ckb-gdb-remote-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ckb-gdb-remote-protocol"
33
edition = "2021"
4-
version = "0.112.1"
4+
version = "0.113.0"
55
description = "An implementation of the GDB remote protocol"
66
authors = ["Ted Mielczarek <ted@mielczarek.org>"]
77
license = "Apache-2.0/MIT"

ckb-mock-tx-types/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "ckb-mock-tx-types"
33
description = "CKB mock transaction types"
4-
version = "0.112.1"
4+
version = "0.113.0"
55
license = "MIT"
66
edition = "2021"
77
authors = ["Nervos Core Dev <dev@nervos.org>"]
88

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

1111
[dependencies]
12-
ckb-types = "=0.112.1"
13-
ckb-jsonrpc-types = "=0.112.1"
14-
ckb-traits = "=0.112.1"
12+
ckb-types = "=0.113.0"
13+
ckb-jsonrpc-types = "=0.113.0"
14+
ckb-traits = "=0.113.0"
1515
serde = { version = "1.0", features=["derive"] }

ckb-vm-debug-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ckb-vm-debug-utils"
3-
version = "0.112.1"
3+
version = "0.113.0"
44
authors = ["Xuejie Xiao <xxuejie@gmail.com>"]
55
edition = "2021"
66
description = "Utils for ckb-debugger"
@@ -14,7 +14,7 @@ stdio = ["libc", "nix"]
1414
byteorder = "1"
1515
bytes = "1.0.0"
1616
ckb-vm = "=0.24.6"
17-
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.112.1" }
17+
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.113.0" }
1818
libc = { version = "0.2.47", optional = true }
1919
log = "0.4.0"
2020
nix = { version = "0.26.2", optional = true }

ckb-vm-pprof-converter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ckb-vm-pprof-converter"
3-
version = "0.112.1"
3+
version = "0.113.0"
44
edition = "2021"
55
description = "Convert raw data generated by ckb-vm-pprof to proto format accepted by Google's pprof tool"
66
license = "MIT"
@@ -11,4 +11,4 @@ authors = ["Nervos Core Dev <dev@nervos.org>"]
1111
[dependencies]
1212
clap = { version = "4.0.27", features = ["cargo"] }
1313
protobuf = { version = "2.25.1", features = ["with-bytes", "with-serde"] }
14-
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.112.1" }
14+
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.113.0" }

ckb-vm-pprof-protos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ckb-vm-pprof-protos"
3-
version = "0.112.1"
3+
version = "0.113.0"
44
edition = "2021"
55
description = "Crate for generating Rust definitions from pprof proto"
66
license = "MIT"

ckb-vm-pprof/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ckb-vm-pprof"
3-
version = "0.112.1"
3+
version = "0.113.0"
44
authors = ["mohanson <mohanson@outlook.com>"]
55
edition = "2021"
66
description = "Statistical CKB script cycles consumption flame graph"

0 commit comments

Comments
 (0)