Skip to content

Commit

Permalink
Release 0.31.1 (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Oct 4, 2024
1 parent 3e6ff1d commit 7e9d923
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,41 @@

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

## 0.31.1

Released 2024/10/04.

### Changed

* Changed `read::Evaluation::evaluate` to validate `DW_OP_deref_size`.
[#739](https://github.com/gimli-rs/gimli/pull/739)

* Changed `write::LineProgram` to allow use of file index 0 for DWARF version 5.
[#740](https://github.com/gimli-rs/gimli/pull/740)

* Improved the workaround for reading zero length entries in `.debug_frame`.
[#741](https://github.com/gimli-rs/gimli/pull/741)

* Implemented `Default` for `read::DwarfSections` and `read::DwarfPackageSections`.
[#742](https://github.com/gimli-rs/gimli/pull/742)

* Changed `read::ArangeEntryIter` to handle tombstones in `.debug_aranges`.
[#743](https://github.com/gimli-rs/gimli/pull/743)

* Improved handling handling of 0 for tombstones in `DW_LNE_set_address`
and address pairs in ranges and locations.
[#750](https://github.com/gimli-rs/gimli/pull/750)

* Changed the `read::ArrayLike` trait implementation to use const generics.
[#752](https://github.com/gimli-rs/gimli/pull/752)

### Added

* Added `MIPS::HI` and `MIPS::LO`.
[#749](https://github.com/gimli-rs/gimli/pull/749)

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

## 0.31.0

Released 2024/07/16.
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.31.0"
version = "0.31.1"
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.31.0"
gimli = "0.31.1"
```

The minimum supported Rust version is:
Expand Down
2 changes: 1 addition & 1 deletion src/read/line.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1656,7 +1656,7 @@ where
///
/// Note: For DWARF v5 files this may return an empty attribute that
/// indicates that no source code is available, which this function
/// represents as Some(<zero-length attr>).
/// represents as `Some(<zero-length attr>)`.
pub fn source(&self) -> Option<AttributeValue<R, Offset>> {
self.source.clone()
}
Expand Down

0 comments on commit 7e9d923

Please sign in to comment.