Skip to content

Commit

Permalink
Release 0.29.0 (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Apr 11, 2024
1 parent b1b9b30 commit 2b93490
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,55 @@

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

## 0.29.0

Released 2024/04/11.

### Breaking changes

* Changed `Reader` type parameter to `ReaderOffset` for `read::UnwindContext` and related types.
Replaced `Expression` with `UnwindExpression` in unwind information types.
[#703](https://github.com/gimli-rs/gimli/pull/703)

### Changed

* Changed `write::Sections::for_each` and `for_each_mut` to specify section lifetime.
[#699](https://github.com/gimli-rs/gimli/pull/699)

* Fixed writing unwind information with an LSDA encoding that is not `DW_EH_PE_absptr`.
[#704](https://github.com/gimli-rs/gimli/pull/704)

* Fixed parsing for an empty DWP index.
[#706](https://github.com/gimli-rs/gimli/pull/706)

* Improved error handling in `read::Unit::dwo_name`.
[#693](https://github.com/gimli-rs/gimli/pull/693)

* Fixed warnings.
[#692](https://github.com/gimli-rs/gimli/pull/692)
[#694](https://github.com/gimli-rs/gimli/pull/694)
[#695](https://github.com/gimli-rs/gimli/pull/695)
[#696](https://github.com/gimli-rs/gimli/pull/696)

### Added

* Added MIPS register definitions.
[#690](https://github.com/gimli-rs/gimli/pull/690)

* Added PowerPC register definitions.
[#691](https://github.com/gimli-rs/gimli/pull/691)

* Added `read::DwarfSections` and `read::DwarfPackageSections`.
[#698](https://github.com/gimli-rs/gimli/pull/698)

* Implemented `BitOr` for `DwEhPe`.
[#709](https://github.com/gimli-rs/gimli/pull/709)

* Added `read::Relocate`, `read::RelocateReader`, and `write::RelocateWriter`.
[#709](https://github.com/gimli-rs/gimli/pull/709)

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

## 0.28.1

Released 2023/11/24.
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 = "gimli"
version = "0.28.1"
version = "0.29.0"
categories = ["development-tools::debugging", "development-tools::profiling", "parser-implementations"]
description = "A library for reading and writing the DWARF debugging format."
documentation = "https://docs.rs/gimli"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
gimli = "0.28.1"
gimli = "0.29.0"
```

The minimum supported Rust version is:
Expand Down

0 comments on commit 2b93490

Please sign in to comment.