Skip to content

Commit

Permalink
Release 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Jul 16, 2024
1 parent 44d3c58 commit 5b71003
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ jobs:
- name: Install rust
run: rustup update 1.65.0 && rustup default 1.65.0
- name: Build
run: cargo build --features loader
run: |
# ruzstd needs rust 1.73.0
cargo update -p object --precise 0.36.0
cargo build --features loader
rustfmt:
runs-on: ubuntu-latest
Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

--------------------------------------------------------------------------------

## 0.24.0 (2024/07/16)

### Breaking changes

* Updated `gimli` dependency.

### Changed

* Changed the order of ranges returned by `Context::find_location_range`, and
fixed handling in rare situations.
[#303](https://github.com/gimli-rs/addr2line/pull/303)
[#304](https://github.com/gimli-rs/addr2line/pull/304)
[#306](https://github.com/gimli-rs/addr2line/pull/306)

* Improved the performance of `Context::find_location`.
[#305](https://github.com/gimli-rs/addr2line/pull/305)

### Added

* Added `LoaderReader`.
[#307](https://github.com/gimli-rs/addr2line/pull/307)

* Added `--all` option to `addr2line`.
[#307](https://github.com/gimli-rs/addr2line/pull/307)

--------------------------------------------------------------------------------

## 0.23.0 (2024/05/26)

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "addr2line"
version = "0.23.0"
version = "0.24.0"
description = "A cross-platform symbolication library written in Rust, using `gimli`"
documentation = "https://docs.rs/addr2line"
exclude = ["/benches/*", "/fixtures/*", ".github", "*.sh", "*.r"]
Expand Down

0 comments on commit 5b71003

Please sign in to comment.