Skip to content

Commit

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

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Aug 7, 2023
1 parent 4df406e commit 2ea3dad
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 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.4
-------------
- Added support for automatic demangling of symbols, controlled by
`demangle` feature (at compile time) and corresponding flag in
`symbolize::Builder` (at runtime)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
[package]
name = "blazesym"
description = "blazesym is a library for address symbolization and related tasks."
version = "0.2.0-alpha.3"
version = "0.2.0-alpha.4"
edition = "2021"
rust-version = "1.63"
authors = ["Daniel Müller <deso@posteo.net>", "Kui-Feng <thinker.li@gmail.com>"]
Expand Down
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ project manager (e.g., `cargo build`).
Consumption from a Rust project should happen via `Cargo.toml`:
```toml
[dependencies]
blazesym = "0.2.0-alpha.3"
blazesym = "0.2.0-alpha.4"
```

For a quick set of examples please refer to the [`examples/` folder](examples/).
Expand Down Expand Up @@ -91,4 +91,16 @@ the current repository snapshot using `cargo doc` (grouped under the `c_api`
module).


### Command-line
The library also comes with a [command line interface](cli/) for quick
experimentation and debugging. You can run it directly from the
repository, e.g.:
```sh
cargo run -p blazecli -- symbolize elf --path /lib64/libc.so.6 00000000000caee1
```

Please refer to its [`README`](cli/README.md) as well as the help text
for additional information and usage instructions.


[cargo-semver]: https://doc.rust-lang.org/cargo/reference/resolver.html#semver-compatibility
4 changes: 2 additions & 2 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,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.3/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.3/blazesym/symbolize/enum.Source.html#variant.Elf
[blazesym-sym]: https://docs.rs/blazesym/0.2.0-alpha.4/blazesym/symbolize/struct.Symbolizer.html
[blazesym-elf-src]: https://docs.rs/blazesym/0.2.0-alpha.4/blazesym/symbolize/enum.Source.html#variant.Elf

0 comments on commit 2ea3dad

Please sign in to comment.