Skip to content

Commit

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

Signed-off-by: Daniel Müller <[email protected]>
  • Loading branch information
d-e-s-o authored and danielocfb committed Jan 16, 2024
1 parent 1a9e149 commit f1be44f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
12 changes: 5 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
Unreleased
----------
- Introduced `symbolize::Reason` enum to provide best guess at
why symbolization was not successful as part of the
`symbolize::Symbolized::Unknown` variant
0.2.0-alpha.10
--------------
- Introduced `symbolize::Reason` enum to provide best guess at why symbolization
was not successful as part of the `symbolize::Symbolized::Unknown` variant
- Introduced `apk` and `gsym` compile-time features (disabled by default)
- Improved handling of dynamic ELF symbols for symbolization and
inspection
- Improved handling of dynamic ELF symbols for symbolization and inspection
- Fixed Gsym symbolization issue for "large" addresses
- Reordered `pid` argument to normalization functions before addresses
- Reordered `src` argument to inspection functions before names
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
[package]
name = "blazesym"
description = "blazesym is a library for address symbolization and related tasks."
version = "0.2.0-alpha.9"
version = "0.2.0-alpha.10"
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 @@ -82,7 +82,7 @@ project manager (e.g., `cargo build`).
Consumption from a Rust project should happen via `Cargo.toml`:
```toml
[dependencies]
blazesym = "=0.2.0-alpha.9"
blazesym = "=0.2.0-alpha.10"
```

For a quick set of examples please refer to the [`examples/` folder](examples/).
Expand Down
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ which = {version = "5.0.0", optional = true}

[dependencies]
# Pinned, because we use #[doc(hidden)] APIs.
blazesym = {version = "=0.2.0-alpha.9", path = "../", features = ["apk", "demangle", "dwarf", "gsym"]}
blazesym = {version = "=0.2.0-alpha.10", path = "../", features = ["apk", "demangle", "dwarf", "gsym"]}

[dev-dependencies]
env_logger = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Unreleased
----------
- Bumped `blazesym` dependency to `0.2.0-alpha.9`
- Bumped `blazesym` dependency to `0.2.0-alpha.10`


0.1.1
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ grev = "0.1.3"

[dependencies]
anyhow = "1.0.68"
blazesym = {version = "=0.2.0-alpha.9", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "tracing"]}
blazesym = {version = "=0.2.0-alpha.10", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "tracing"]}
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 @@ -59,5 +59,5 @@ refer to the help text (`--help`) of the `shell-complete` program for
the list of supported shells.

[blazesym]: https://crates.io/crates/blazesym
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-alpha.9/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.9/blazesym/symbolize/enum.Source.html#variant.Elf
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-alpha.10/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.10/blazesym/symbolize/enum.Source.html#variant.Elf

0 comments on commit f1be44f

Please sign in to comment.