Skip to content

Commit

Permalink
Bump version to 0.2.0-rc.2
Browse files Browse the repository at this point in the history
This change bumps the version of the crate to 0.2.0-rc.2.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Oct 29, 2024
1 parent ff08cfa commit d12a9a1
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Unreleased
0.2.0-rc.2
----------
- Added support for symbolizing BPF kernel program addresses including
source code information
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default-members = ["."]
[package]
name = "blazesym"
description = "blazesym is a library for address symbolization and related tasks."
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
edition = "2021"
rust-version = "1.69"
authors = ["Daniel Müller <deso@posteo.net>", "Kui-Feng <thinker.li@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ project manager (e.g., `cargo build`).
Consumption from a Rust project should happen via `Cargo.toml`:
```toml
[dependencies]
blazesym = "=0.2.0-rc.1"
blazesym = "=0.2.0-rc.2"
```

For a quick set of examples please refer to the [`examples/` folder](examples/).
Expand Down
1 change: 1 addition & 0 deletions capi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Unreleased
- Fixed various functions accepting `uintptr_t` addresses, when they
really should be using `uint64_t`
- Introduced `blaze_read_elf_build_id` helper
- Bumped `blazesym` dependency to `0.2.0-rc.2`


0.1.0-rc.1
Expand Down
4 changes: 2 additions & 2 deletions capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ which = {version = "7.0.0", optional = true}
# Pinned, because we use #[doc(hidden)] APIs.
# TODO: Enable `zstd` feature once we enabled it for testing in the main
# crate.
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "zlib"]}
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "zlib"]}
libc = "0.2.137"
# TODO: Remove dependency one MSRV is 1.77.
memoffset = "0.9"

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["bpf"]}
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["bpf"]}

[dev-dependencies]
blazesym-c = {path = ".", features = ["check-doc-snippets"]}
Expand Down
1 change: 1 addition & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Unreleased
----------
- Added support for symbolization of kernel addresses
- Added `--map-files` option to `normalize user` sub-command
- Bumped `blazesym` dependency to `0.2.0-rc.2`


0.1.6
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ grev = "0.1.3"
anyhow = "1.0.68"
# TODO: Enable `zstd` feature once we enabled it for testing in the main
# crate.
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
clap = {version = "4.1.7", features = ["derive"]}
clap_complete = {version = "4.1.1", optional = true}
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["ansi", "env-filter", "fmt"]}

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["bpf"]}
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["bpf"]}
4 changes: 2 additions & 2 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ the list of supported shells.

[blazecli-bins]: https://github.com/libbpf/blazesym/actions/workflows/build.yml
[blazesym]: https://crates.io/crates/blazesym
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-rc.1/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-rc.1/blazesym/symbolize/enum.Source.html#variant.Elf
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-rc.2/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-rc.2/blazesym/symbolize/enum.Source.html#variant.Elf
2 changes: 1 addition & 1 deletion examples/gsym-in-apk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "gsym-in-apk"
path = "main.rs"

[dependencies]
blazesym = {version = "=0.2.0-rc.1", path = "../..", default-features = false, features = [
blazesym = {version = "=0.2.0-rc.2", path = "../..", default-features = false, features = [
"apk",
"gsym",
]}
Expand Down
2 changes: 1 addition & 1 deletion examples/sym-debuginfod/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "main.rs"

[dependencies]
anyhow = "1.0"
blazesym = {version = "=0.2.0-rc.1", path = "../..", features = ["tracing"]}
blazesym = {version = "=0.2.0-rc.2", path = "../..", features = ["tracing"]}
clap = {version = "4.4", features = ["derive", "string"]}
debuginfod = {version = "0.1.1", features = ["fs-cache", "tracing"]}
tracing = "0.1"
Expand Down

0 comments on commit d12a9a1

Please sign in to comment.