Skip to content

Commit 355edec

Browse files
d-e-s-odanielocfb
authored andcommitted
Bump version to 0.2.0-rc.3
This change bumps the version of the crate to 0.2.0-rc.3. Signed-off-by: Daniel Müller <deso@posteo.net>
1 parent 6d27281 commit 355edec

File tree

11 files changed

+16
-14
lines changed

11 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Unreleased
1+
0.2.0-rc.3
22
----------
33
- Added support for 32 bit ELF binaries
44
- Added `symbolize::Symbolizer::cache` method for caching process VMA

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ homepage = "https://github.com/libbpf/blazesym"
2121
[package]
2222
name = "blazesym"
2323
description = "blazesym is a library for address symbolization and related tasks."
24-
version = "0.2.0-rc.2"
24+
version = "0.2.0-rc.3"
2525
edition.workspace = true
2626
rust-version.workspace = true
2727
authors = ["Daniel Müller <deso@posteo.net>", "Kui-Feng <thinker.li@gmail.com>"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ project manager (e.g., `cargo build`).
8484
Consumption from a Rust project should happen via `Cargo.toml`:
8585
```toml
8686
[dependencies]
87-
blazesym = "=0.2.0-rc.2"
87+
blazesym = "=0.2.0-rc.3"
8888
```
8989

9090
For a quick set of examples please refer to the [`examples/` folder](examples/).

capi/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Unreleased
1818
- Added `blaze_symbolize_cache_elf` for caching of ELF data
1919
- Added `blaze_symbolize_cache_process` for caching of process VMA
2020
metadata
21+
- Bumped `blazesym` dependency to `0.2.0-rc.3`
2122

2223

2324
0.1.0-rc.2

capi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@ which = {version = "7.0.0", optional = true}
5959
# Pinned, because we use #[doc(hidden)] APIs.
6060
# TODO: Enable `zstd` feature once we enabled it for testing in the main
6161
# crate.
62-
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
62+
blazesym = {version = "=0.2.0-rc.3", path = "../", features = ["apk", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
6363
libc = "0.2.171"
64-
# TODO: Remove dependency one MSRV is 1.77.
64+
# TODO: Remove dependency once MSRV is 1.77.
6565
memoffset = "0.9"
6666
tracing = "0.1"
6767
tracing-subscriber = {version = "0.3", default-features = false, features = ["fmt"]}
6868

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

7272
[dev-dependencies]
73-
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["test"]}
73+
blazesym = {version = "=0.2.0-rc.3", path = "../", features = ["test"]}
7474
blazesym-c = {path = ".", features = ["check-doc-snippets"]}
7575
bindgen = {version = "0.71", default-features = false, features = ["runtime"]}
7676
# TODO: Use 0.5.2 once released.

cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Unreleased
66
- Added `--kallsyms` and `--vmlinux` options to `symbolize-kernel
77
sub-command
88
- Fixed truncation of overly long tracing lines
9+
- Bumped `blazesym` dependency to `0.2.0-rc.3`
910

1011

1112
0.1.8

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ anyhow = "1.0.97"
4040
bufio = "0.1"
4141
# TODO: Enable `zstd` feature once we enabled it for testing in the main
4242
# crate.
43-
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
43+
blazesym = {version = "=0.2.0-rc.3", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
4444
clap = {version = "4.5", features = ["derive"]}
4545
clap_complete = {version = "4.5", optional = true}
4646
tracing = "0.1"
4747
tracing-subscriber = {version = "0.3", features = ["ansi", "env-filter", "fmt"]}
4848

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

cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ the list of supported shells.
6363

6464
[blazecli-bins]: https://github.com/libbpf/blazesym/actions/workflows/build.yml
6565
[blazesym]: https://crates.io/crates/blazesym
66-
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-rc.2/blazesym/symbolize/struct.Symbolizer.html
67-
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-rc.2/blazesym/symbolize/enum.Source.html#variant.Elf
66+
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-rc.3/blazesym/symbolize/struct.Symbolizer.html
67+
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-rc.3/blazesym/symbolize/enum.Source.html#variant.Elf

examples/gsym-in-apk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "gsym-in-apk"
1111
path = "main.rs"
1212

1313
[dependencies]
14-
blazesym = {version = "=0.2.0-rc.2", path = "../..", default-features = false, features = [
14+
blazesym = {version = "=0.2.0-rc.3", path = "../..", default-features = false, features = [
1515
"apk",
1616
"gsym",
1717
]}

0 commit comments

Comments
 (0)