Skip to content

Commit de4016f

Browse files
committed
Release 0.30.0
1 parent 0d9a980 commit de4016f

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
--------------------------------------------------------------------------------
44

5+
## 0.30.0
6+
7+
Released 2024/05/26.
8+
9+
### Breaking changes
10+
11+
* Added context to some `read::Error` variants.
12+
[#703](https://github.com/gimli-rs/gimli/pull/703)
13+
14+
* Changed type of `read::UnitIndexSection::section` to `IndexSectionId`.
15+
[#716](https://github.com/gimli-rs/gimli/pull/716)
16+
17+
### Changed
18+
19+
* Fixed `write::Operation::ImplicitPointer::size`.
20+
[#712](https://github.com/gimli-rs/gimli/pull/712)
21+
22+
* Changed `read::RngListIter` and `read::LocListIter` to skip ranges where
23+
the end is before the beginning, instead of returning an error.
24+
[#715](https://github.com/gimli-rs/gimli/pull/715)
25+
26+
* Fixed clippy warnings.
27+
[#713](https://github.com/gimli-rs/gimli/pull/713)
28+
29+
### Added
30+
31+
* Added `read::UnitRef`.
32+
[#711](https://github.com/gimli-rs/gimli/pull/711)
33+
34+
--------------------------------------------------------------------------------
35+
536
## 0.29.0
637

738
Released 2024/04/11.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gimli"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
categories = ["development-tools::debugging", "development-tools::profiling", "parser-implementations"]
55
description = "A library for reading and writing the DWARF debugging format."
66
documentation = "https://docs.rs/gimli"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:
3030

3131
```toml
3232
[dependencies]
33-
gimli = "0.29.0"
33+
gimli = "0.30.0"
3434
```
3535

3636
The minimum supported Rust version is:

0 commit comments

Comments
 (0)