Skip to content

Commit

Permalink
Release 0.26.0 (gimli-rs#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Oct 24, 2021
1 parent ef97809 commit f47895d
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 3 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,62 @@

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

## 0.26.0

Released 2021/10/24.

### Breaking changes

* Removed `read::UninitializedUnwindContext`. Use `Box<UnwindContext>` instead.
[#593](https://github.com/gimli-rs/gimli/pull/593)

* Renamed `read::Error::CfiStackFull` to `StackFull`.
[#595](https://github.com/gimli-rs/gimli/pull/595)

* Added `UnwindContextStorage` type parameter to `read::UnwindContext`, `read::UnwindTable`,
`read::UnwindTableRow`, and `read::RegisterRuleMap`.
[#595](https://github.com/gimli-rs/gimli/pull/595)

* Added `EvaluationStorage` type parameter to `read::Evaluation`.
[#595](https://github.com/gimli-rs/gimli/pull/595)

* Added `read::SectionId::DebugCuIndex` and `read::SectionId::DebugTuIndex`.
[#588](https://github.com/gimli-rs/gimli/pull/588)

### Changed

* Fixed `DW_EH_PE_pcrel` handling in default `write::Writer::write_eh_pointer` implementation.
[#576](https://github.com/gimli-rs/gimli/pull/576)

* Fixed `read::AttributeSpecification::size` for some forms.
[#597](https://github.com/gimli-rs/gimli/pull/597)

* Display more unit details in dwarfdump.
[#584](https://github.com/gimli-rs/gimli/pull/584)

### Added

* Added `write::DebuggingInformationEntry::delete_child`.
[#570](https://github.com/gimli-rs/gimli/pull/570)

* Added ARM and AArch64 register definitions.
[#574](https://github.com/gimli-rs/gimli/pull/574)
[#577](https://github.com/gimli-rs/gimli/pull/577)

* Added RISC-V register definitions.
[#579](https://github.com/gimli-rs/gimli/pull/579)

* Added `read::DwarfPackage`, `read::DebugCuIndex`, and `read::DebugTuIndex`.
[#588](https://github.com/gimli-rs/gimli/pull/588)

* Added `read-core` feature to allow building without `liballoc`.
[#596](https://github.com/gimli-rs/gimli/pull/596)

* Added `read::EntriesRaw::skip_attributes`.
[#597](https://github.com/gimli-rs/gimli/pull/597)

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

## 0.25.0

Released 2021/07/26.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gimli"
version = "0.25.0"
version = "0.26.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 Expand Up @@ -31,7 +31,7 @@ crossbeam = "0.8"
getopts = "0.2"
memmap = "0.7"
num_cpus = "1"
object = { version = "0.26", features = ["wasm"] }
object = { version = "0.27.1", features = ["wasm"] }
rayon = "1.0"
regex = "1"
test-assembler = "0.1.3"
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.25.0"
gimli = "0.26.0"
```

The minimum supported Rust version is 1.42.0.
Expand Down

0 comments on commit f47895d

Please sign in to comment.