Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.31.1 #753

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading