Skip to content

Commit

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

Signed-off-by: Daniel Müller <[email protected]>
  • Loading branch information
d-e-s-o committed May 6, 2024
1 parent b372a69 commit 58cf98b
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.2.0-alpha.12
--------------
- Added support for advanced symbolization workflows involving containers
(process or APKs) via configurable dispatch functions
- Added `cache_maps` and `cache_build_ids` properties 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-alpha.11"
version = "0.2.0-alpha.12"
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 @@ -96,7 +96,7 @@ project manager (e.g., `cargo build`).
Consumption from a Rust project should happen via `Cargo.toml`:
```toml
[dependencies]
blazesym = "=0.2.0-alpha.11"
blazesym = "=0.2.0-alpha.12"
```

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 @@ -11,6 +11,7 @@ Unreleased
- Added `blaze_symbolize_elf_file_offsets` function for symbolization of
file offsets
- Removed `BLAZE_INPUT` macro
- Bumped `blazesym` dependency to `0.2.0-alpha.12`


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

Expand Down
1 change: 1 addition & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased
----------
- Added `inspect` command
- Bumped `blazesym` dependency to `0.2.0-alpha.12`


0.1.3
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-alpha.11", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
blazesym = {version = "=0.2.0-alpha.12", 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-alpha.11/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.11/blazesym/symbolize/enum.Source.html#variant.Elf
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-alpha.12/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.12/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-alpha.11", path = "../..", default-features = false, features = [
blazesym = {version = "=0.2.0-alpha.12", 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-alpha.11", path = "../..", features = ["tracing"]}
blazesym = {version = "=0.2.0-alpha.12", path = "../..", features = ["tracing"]}
clap = {version = "4.4", features = ["derive", "string"]}
debuginfod = {version = "0.1", features = ["fs-cache", "tracing"]}
dirs = "5.0.1"
Expand Down

0 comments on commit 58cf98b

Please sign in to comment.