Skip to content

Commit

Permalink
Release 0.28.1 (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Nov 24, 2023
1 parent 1ee51ef commit ee0262a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,41 @@

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

## 0.28.1

Released 2023/11/24.

### Changed

* Changed `read::AbbreviationsCache` to require manual population using
`Dwarf::populate_abbreviations_cache`.
[#679](https://github.com/gimli-rs/gimli/pull/679)

* Changed the default `read::UnwindContextStorage` to use `Box` instead of `Vec`
so that its memory usage is limited.
[#687](https://github.com/gimli-rs/gimli/pull/687)

* Changed `read::UnwindTable::new` to always reset the context, because
previous errors may have left the context in an invalid state.
[#684](https://github.com/gimli-rs/gimli/pull/684)

* Changed the `Debug` implementation for `read::EndianSlice` to limit the number
of bytes it displays.
[#686](https://github.com/gimli-rs/gimli/pull/686)

### Added

* Added more AArch64 register definitions.
[#680](https://github.com/gimli-rs/gimli/pull/680)

* Added `read::Unit::new_with_abbreviations`.
[#677](https://github.com/gimli-rs/gimli/pull/677)

* Added `read::Evaluation::value_result`.
[#676](https://github.com/gimli-rs/gimli/pull/676)

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

## 0.28.0

Released 2023/08/12.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gimli"
version = "0.28.0"
version = "0.28.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
Expand Up @@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:

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

The minimum supported Rust version is:
Expand Down

0 comments on commit ee0262a

Please sign in to comment.