Skip to content

Commit fe62b0f

Browse files
committed
Bump version to 0.121.0
1 parent a66d34e commit fe62b0f

File tree

8 files changed

+137
-79
lines changed

8 files changed

+137
-79
lines changed

Cargo.lock

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

ckb-debugger/Cargo.toml

Lines changed: 8 additions & 8 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.119.0"
4+
version = "0.121.0"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2021"
@@ -13,13 +13,13 @@ default = []
1313
addr2line = "0.17"
1414
byteorder = "1"
1515
clap = "2.33.0"
16-
ckb-chain-spec = "=0.119.0"
17-
ckb-hash = "=0.119.0"
18-
ckb-jsonrpc-types = "=0.119.0"
19-
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.119.0" }
20-
ckb-script = { version = "=0.119.0", default-features = false, features = ["flatmemory"] }
21-
ckb-traits = "=0.119.0"
22-
ckb-types = "=0.119.0"
16+
ckb-chain-spec = "=0.121.0"
17+
ckb-hash = "=0.121.0"
18+
ckb-jsonrpc-types = "=0.121.0"
19+
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.121.0" }
20+
ckb-script = { version = "=0.121.0", default-features = false, features = ["flatmemory"] }
21+
ckb-traits = "=0.121.0"
22+
ckb-types = "=0.121.0"
2323
ckb-vm = { version = "=0.24.12", default-features = false, features = ["pprof"] }
2424
env_logger = "0.4.3"
2525
gdbstub = "0.7"

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.119.0"
4+
version = "0.121.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.119.0"
13-
ckb-jsonrpc-types = "=0.119.0"
14-
ckb-traits = "=0.119.0"
12+
ckb-types = "=0.121.0"
13+
ckb-jsonrpc-types = "=0.121.0"
14+
ckb-traits = "=0.121.0"
1515
serde = { version = "1.0", features = ["derive"] }

ckb-vm-debug-utils/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-debug-utils"
3-
version = "0.119.0"
3+
version = "0.121.0"
44
authors = ["Xuejie Xiao <xxuejie@gmail.com>"]
55
edition = "2021"
66
description = "Utils for ckb-debugger"

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.119.0"
3+
version = "0.121.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 = "3.7", features = ["with-bytes"] }
14-
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.119.0" }
14+
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.121.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.119.0"
3+
version = "0.121.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.119.0"
3+
version = "0.121.0"
44
authors = ["mohanson <mohanson@outlook.com>"]
55
edition = "2021"
66
description = "Statistical CKB script cycles consumption flame graph"

ckb-vm-signal-profiler/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-signal-profiler"
3-
version = "0.119.0"
3+
version = "0.121.0"
44
edition = "2021"
55
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"
66
license = "MIT"
@@ -18,4 +18,4 @@ log = "0.4.16"
1818
nix = "0.23.1"
1919
lazy_static = "1.4.0"
2020
protobuf = { version = "3.7", features = ["with-bytes"] }
21-
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.119.0" }
21+
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.121.0" }

0 commit comments

Comments
 (0)