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 0.2.0-rc.1 #810

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
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.1
----------
- Added support for using `PROCMAP_QUERY` ioctl during address normalization
- Added `enable_procmap_query` to `normalize::Normalizer`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
[package]
name = "blazesym"
description = "blazesym is a library for address symbolization and related tasks."
version = "0.2.0-rc.0"
version = "0.2.0-rc.1"
edition = "2021"
rust-version = "1.65"
authors = ["Daniel Müller <[email protected]>", "Kui-Feng <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ project manager (e.g., `cargo build`).
Consumption from a Rust project should happen via `Cargo.toml`:
```toml
[dependencies]
blazesym = "=0.2.0-rc.0"
blazesym = "=0.2.0-rc.1"
```

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 @@ -6,6 +6,7 @@ Unreleased
- Renamed `cache_maps` attribute of `blaze_normalizer_opts` to
`cache_vmas`
- Introduced `blaze_supports_procmap_query` helper
- Bumped `blazesym` dependency to `0.2.0-rc.1`


0.1.0-rc.0
Expand Down
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ which = {version = "6.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.0", path = "../", features = ["apk", "demangle", "gsym", "zlib"]}
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["apk", "demangle", "gsym", "zlib"]}
# TODO: Remove dependency one MSRV is 1.77.
memoffset = "0.9"

Expand Down
5 changes: 5 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Unreleased
----------
- Bumped `blazesym` dependency to `0.2.0-rc.1`


0.1.5
-----
- Added `--debug-dirs` option to `symbolize elf` sub-command
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ 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.0", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
blazesym = {version = "=0.2.0-rc.1", 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"
Expand Down
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.0/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-rc.0/blazesym/symbolize/enum.Source.html#variant.Elf
[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
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.0", path = "../..", default-features = false, features = [
blazesym = {version = "=0.2.0-rc.1", path = "../..", default-features = false, features = [
"apk",
"gsym",
"generate-unit-test-files",
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.0", path = "../..", features = ["tracing"]}
blazesym = {version = "=0.2.0-rc.1", path = "../..", features = ["tracing"]}
clap = {version = "4.4", features = ["derive", "string"]}
debuginfod = {version = "0.1", features = ["fs-cache", "tracing"]}
dirs = "5.0.1"
Expand Down