Skip to content

Commit 7405536

Browse files
authored
Merge pull request gimli-rs#467 from philipc/release
Release 0.20.0
2 parents 30131d8 + c0c11c7 commit 7405536

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

CHANGELOG.md

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

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

5+
## 0.20.0
6+
7+
Released 2020/01/11.
8+
9+
### Breaking changes
10+
11+
* Changed type of `DwTag`, `DwAt`, and `DwForm` constants.
12+
[#451](https://github.com/gimli-rs/gimli/pull/451)
13+
14+
* Added `read/write::AttributeValue::DebugMacroRef`, and returned where
15+
required in `read::Attribute::value`. Added `SectionId::DebugMacro`.
16+
[#454](https://github.com/gimli-rs/gimli/pull/454)
17+
18+
* Deleted `alloc` feature, and fixed `no-std` builds with stable rust.
19+
[#459](https://github.com/gimli-rs/gimli/pull/459)
20+
21+
* Deleted `read::Error::description`, and changed `<read::Error as Display>`
22+
to display what was previously the description.
23+
[#462](https://github.com/gimli-rs/gimli/pull/462)
24+
25+
### Added
26+
27+
* Added GNU view constants.
28+
[#434](https://github.com/gimli-rs/gimli/pull/434)
29+
30+
* Added `read::EntriesRaw` for low level DIE parsing.
31+
[#455](https://github.com/gimli-rs/gimli/pull/455)
32+
33+
* Added `examples/simple-line.rs`.
34+
[#460](https://github.com/gimli-rs/gimli/pull/460)
35+
36+
### Fixed
37+
38+
* Fixed handling of CFI augmentations without data.
39+
[#438](https://github.com/gimli-rs/gimli/pull/438)
40+
41+
* dwarfdump: fix panic for malformed expressions.
42+
[#447](https://github.com/gimli-rs/gimli/pull/447)
43+
44+
* dwarfdump: fix handling of Mach-O relocations.
45+
[#449](https://github.com/gimli-rs/gimli/pull/449)
46+
47+
### Changed
48+
49+
* Improved abbreviation parsing performance.
50+
[#451](https://github.com/gimli-rs/gimli/pull/451)
51+
52+
--------------------------------------------------------------------------------
53+
554
## 0.19.0
655

756
Released 2019/07/08.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0/MIT"
88
name = "gimli"
99
readme = "./README.md"
1010
repository = "https://github.com/gimli-rs/gimli"
11-
version = "0.19.0"
11+
version = "0.20.0"
1212
exclude = ["/ci/*", "/releases/*", "/.travis.yml"]
1313
edition = "2018"
1414

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.19.0"
33+
gimli = "0.20.0"
3434
```
3535

3636
The minimum supported Rust version is 1.36.0.

0 commit comments

Comments
 (0)