Skip to content

Commit

Permalink
Bump version to 0.121.0 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec authored Jan 24, 2025
1 parent a66d34e commit ff27aa5
Show file tree
Hide file tree
Showing 8 changed files with 137 additions and 79 deletions.
178 changes: 118 additions & 60 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 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.119.0"
version = "0.121.0"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -13,13 +13,13 @@ default = []
addr2line = "0.17"
byteorder = "1"
clap = "2.33.0"
ckb-chain-spec = "=0.119.0"
ckb-hash = "=0.119.0"
ckb-jsonrpc-types = "=0.119.0"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.119.0" }
ckb-script = { version = "=0.119.0", default-features = false, features = ["flatmemory"] }
ckb-traits = "=0.119.0"
ckb-types = "=0.119.0"
ckb-chain-spec = "=0.121.0"
ckb-hash = "=0.121.0"
ckb-jsonrpc-types = "=0.121.0"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.121.0" }
ckb-script = { version = "=0.121.0", default-features = false, features = ["flatmemory"] }
ckb-traits = "=0.121.0"
ckb-types = "=0.121.0"
ckb-vm = { version = "=0.24.12", default-features = false, features = ["pprof"] }
env_logger = "0.4.3"
gdbstub = "0.7"
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.119.0"
version = "0.121.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.119.0"
ckb-jsonrpc-types = "=0.119.0"
ckb-traits = "=0.119.0"
ckb-types = "=0.121.0"
ckb-jsonrpc-types = "=0.121.0"
ckb-traits = "=0.121.0"
serde = { version = "1.0", features = ["derive"] }
2 changes: 1 addition & 1 deletion 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.119.0"
version = "0.121.0"
authors = ["Xuejie Xiao <[email protected]>"]
edition = "2021"
description = "Utils for ckb-debugger"
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.119.0"
version = "0.121.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 = "3.7", features = ["with-bytes"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.119.0" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.121.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.119.0"
version = "0.121.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.119.0"
version = "0.121.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.119.0"
version = "0.121.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 = "3.7", features = ["with-bytes"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.119.0" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.121.0" }

0 comments on commit ff27aa5

Please sign in to comment.