Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.118.0-rc2 #139

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 51 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.118.0-rc1"
version = "0.118.0-rc2"
license = "MIT"
authors = ["Nervos Core Dev <dev@nervos.org>"]
edition = "2021"
Expand All @@ -13,13 +13,13 @@ default = []
addr2line = "0.17"
byteorder = "1"
clap = "2.33.0"
ckb-chain-spec = "=0.118.0-rc1"
ckb-hash = "=0.118.0-rc1"
ckb-jsonrpc-types = "=0.118.0-rc1"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.118.0-rc1" }
ckb-script = { version = "=0.118.0-rc1", default-features = false, features = ["flatmemory"] }
ckb-traits = "=0.118.0-rc1"
ckb-types = "=0.118.0-rc1"
ckb-chain-spec = "=0.118.0-rc2"
ckb-hash = "=0.118.0-rc2"
ckb-jsonrpc-types = "=0.118.0-rc2"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.118.0-rc2" }
ckb-script = { version = "=0.118.0-rc2", default-features = false, features = ["flatmemory"] }
ckb-traits = "=0.118.0-rc2"
ckb-types = "=0.118.0-rc2"
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.118.0-rc1"
version = "0.118.0-rc2"
license = "MIT"
edition = "2021"
authors = ["Nervos Core Dev <dev@nervos.org>"]

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

[dependencies]
ckb-types = "=0.118.0-rc1"
ckb-jsonrpc-types = "=0.118.0-rc1"
ckb-traits = "=0.118.0-rc1"
ckb-types = "=0.118.0-rc2"
ckb-jsonrpc-types = "=0.118.0-rc2"
ckb-traits = "=0.118.0-rc2"
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.118.0-rc1"
version = "0.118.0-rc2"
authors = ["Xuejie Xiao <xxuejie@gmail.com>"]
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.118.0-rc1"
version = "0.118.0-rc2"
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 <dev@nervos.org>"]
[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.118.0-rc1" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.118.0-rc2" }
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.118.0-rc1"
version = "0.118.0-rc2"
edition = "2021"
description = "Crate for generating Rust definitions from pprof proto"
license = "MIT"
Expand Down
Loading