Skip to content

Commit

Permalink
Release 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed May 26, 2024
1 parent bd29409 commit 0124c7d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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

## 0.23.0 (2024/05/26)

### Breaking changes

* Updated `gimli` dependency.

* Deleted `Context::new`, `Context::new_with_sup`, and `builtin_split_dwarf_loader`.
Use `Context::from_dwarf` or `Loader::new` instead.
This removes `object` from the public API.
[#296](https://github.com/gimli-rs/addr2line/pull/296)

### Changed

* Fixed handling of column 0 in the line table.
[#290](https://github.com/gimli-rs/addr2line/pull/290)

* Moved `addr2line` from `examples` to `bin`. Requires the `bin` feature.
[#291](https://github.com/gimli-rs/addr2line/pull/291)

* Split up `lib.rs` into smaller modules.
[#292](https://github.com/gimli-rs/addr2line/pull/292)

### Added

* Added `Loader`. Requires the `loader` feature.
[#296](https://github.com/gimli-rs/addr2line/pull/296)
[#297](https://github.com/gimli-rs/addr2line/pull/297)

* Added unpacked Mach-O support to `Loader`.
[#298](https://github.com/gimli-rs/addr2line/pull/298)

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

## 0.22.0 (2024/04/11)

### Breaking changes
Expand Down
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.22.0"
version = "0.23.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 0124c7d

Please sign in to comment.