From f1be44fdba0b521be8f169dcd7311ed09ec5bdd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 16 Jan 2024 11:21:00 -0800 Subject: [PATCH] Bump version to 0.2.0-alpha.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change bumps the version of the crate to 0.2.0-alpha.10. Signed-off-by: Daniel Müller --- CHANGELOG.md | 12 +++++------- Cargo.toml | 2 +- README.md | 2 +- capi/Cargo.toml | 2 +- cli/CHANGELOG.md | 2 +- cli/Cargo.toml | 2 +- cli/README.md | 4 ++-- 7 files changed, 12 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1942cd6a..91936e93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index e24192b0..0fd61aa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", "Kui-Feng "] diff --git a/README.md b/README.md index 0a1795af..da705044 100644 --- a/README.md +++ b/README.md @@ -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/). diff --git a/capi/Cargo.toml b/capi/Cargo.toml index ec3d7eac..3b0f17ff 100644 --- a/capi/Cargo.toml +++ b/capi/Cargo.toml @@ -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" diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index c3bcc5aa..6034e1ce 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -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 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4ad90609..44825a58 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" diff --git a/cli/README.md b/cli/README.md index b22304d9..506cfb96 100644 --- a/cli/README.md +++ b/cli/README.md @@ -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