Skip to content

Commit 7d722d0

Browse files
authored
Bump version to v0.109.0 (#81)
1 parent dc39219 commit 7d722d0

File tree

10 files changed

+29
-53
lines changed

10 files changed

+29
-53
lines changed

Cargo.lock

Lines changed: 15 additions & 39 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: 1 addition & 1 deletion
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.108.1"
4+
version = "0.109.0"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2021"

ckb-debugger/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-debugger"
33
description = "Standalone debugger for Nervos CKB"
4-
version = "0.108.1"
4+
version = "0.109.0"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2021"

ckb-mock-tx-types/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-mock-tx-types"
33
description = "CKB mock transaction types"
4-
version = "0.108.1"
4+
version = "0.109.0"
55
license = "MIT"
66
edition = "2021"
77
authors = ["Nervos Core Dev <dev@nervos.org>"]

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.108.1"
3+
version = "0.109.0"
44
authors = ["Xuejie Xiao <xxuejie@gmail.com>"]
55
edition = "2021"
66

ckb-vm-pprof-converter/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-converter"
3-
version = "0.108.1"
3+
version = "0.109.0"
44
edition = "2021"
55
description = "Convert raw data generated by ckb-vm-pprof to proto format accepted by Google's pprof tool"
66

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.108.1"
3+
version = "0.109.0"
44
edition = "2018"
55
description = "Crate for generating Rust definitions from pprof proto"
66

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.108.1"
3+
version = "0.109.0"
44
authors = ["mohanson <mohanson@outlook.com>"]
55
edition = "2021"
66

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.108.1"
3+
version = "0.109.0"
44
edition = "2018"
55
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"
66

@@ -11,7 +11,7 @@ env_logger = "0.9.0"
1111

1212
[dependencies]
1313
addr2line = "0.17.0"
14-
ckb-vm = { version = "=0.22.2", features = ["asm"] }
14+
ckb-vm = { version = "=0.23.2", features = ["asm"] }
1515
log = "0.4.16"
1616
nix = "0.23.1"
1717
lazy_static = "1.4.0"

ckb-vm-signal-profiler/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ struct Profiler {
9999
report: Report,
100100
}
101101

102-
struct StackUnwinder<'a, 'b> {
102+
struct StackUnwinder<'a> {
103103
context: &'a DebugContext,
104-
machine: &'a mut AsmMachine<'b>,
104+
machine: &'a mut AsmMachine,
105105
// Only keeping 3 registers here: 0 is pc, 1 is ra, 2 is s0(fp).
106106
registers: [Option<u64>; 32],
107107
state: Option<(gimli::UnwindTableRow<Addr2LineEndianReader>, u64)>,
@@ -116,8 +116,8 @@ struct UnwindInfo {
116116
// initial_address: u64,
117117
}
118118

119-
impl<'a, 'b> StackUnwinder<'a, 'b> {
120-
fn new(context: &'a DebugContext, machine: &'a mut AsmMachine<'b>) -> Self {
119+
impl<'a, 'b> StackUnwinder<'a> {
120+
fn new(context: &'a DebugContext, machine: &'a mut AsmMachine) -> Self {
121121
let mut registers = [None; 32];
122122
for (i, v) in machine.machine.registers().iter().enumerate() {
123123
registers[i] = Some(*v);
@@ -184,7 +184,7 @@ impl<'a, 'b> StackUnwinder<'a, 'b> {
184184
}
185185
}
186186

187-
impl<'a, 'b> Iterator for StackUnwinder<'a, 'b> {
187+
impl<'a> Iterator for StackUnwinder<'a> {
188188
type Item = Symbol;
189189

190190
fn next(&mut self) -> Option<Self::Item> {

0 commit comments

Comments
 (0)