|
2 | 2 |
|
3 | 3 | ## [Unreleased] |
4 | 4 |
|
| 5 | +## [0.20.0](https://github.com/sharksforarms/deku/compare/deku-v0.19.1...deku-v0.20.0) - 2025-10-15 |
| 6 | + |
| 7 | +### Fixed |
| 8 | + |
| 9 | +- remove unsafe slice MaybeUninit::uninit().assume_init() ([#601](https://github.com/sharksforarms/deku/pull/601)) |
| 10 | + |
| 11 | +### Other |
| 12 | + |
| 13 | +- update deps ([#612](https://github.com/sharksforarms/deku/pull/612)) |
| 14 | +- Fix #571: Add more documentation about ctx in the first example ([#574](https://github.com/sharksforarms/deku/pull/574)) |
| 15 | +- introduce release-plz |
| 16 | +- Fix reading little endian fields in LSB order when not aligned to byte boundaries ([#604](https://github.com/sharksforarms/deku/pull/604)) |
| 17 | +- Ensure bits fit in container ([#598](https://github.com/sharksforarms/deku/pull/598)) |
| 18 | +- Fix big endian bit_order lsb writing ([#597](https://github.com/sharksforarms/deku/pull/597)) |
| 19 | +- Improve error message for id_type and missing repr ([#596](https://github.com/sharksforarms/deku/pull/596)) |
| 20 | +- Fix bit order padding logic in Writer::finalize and update tests ([#595](https://github.com/sharksforarms/deku/pull/595)) |
| 21 | +- Expose `alloc` as a selectable feature ([#582](https://github.com/sharksforarms/deku/pull/582)) |
| 22 | +- Removed duplicate `bits` entry from the 'List of attributes' section of attributes docs ([#588](https://github.com/sharksforarms/deku/pull/588)) |
| 23 | +- Fix DekuRead for #[repr(...)] enums constructed using `id` via `ctx` and whose variants assign discriminant values ([#577](https://github.com/sharksforarms/deku/pull/577)) |
| 24 | +- Change arc/cow/cstring requirements from std to alloc ([#579](https://github.com/sharksforarms/deku/pull/579)) |
| 25 | +- deku_read: Use checked slice for remaining data ([#581](https://github.com/sharksforarms/deku/pull/581)) |
| 26 | +- Implements From<DekuError> for no_std_io::io::Error in no_std context ([#578](https://github.com/sharksforarms/deku/pull/578)) |
| 27 | +- Warnings and clippy fixes ([#575](https://github.com/sharksforarms/deku/pull/575)) |
| 28 | +- hashset: tests: Handle arbitrary iteration order of HashSet ([#573](https://github.com/sharksforarms/deku/pull/573)) |
| 29 | +- add map attribute to list ([#570](https://github.com/sharksforarms/deku/pull/570)) |
| 30 | +- Return empty vec for read_to_end ZST ([#566](https://github.com/sharksforarms/deku/pull/566)) |
| 31 | +- Bugfix/signed values in bitfields ([#565](https://github.com/sharksforarms/deku/pull/565)) |
| 32 | +- Fix writer dropping count of bytes written for unaligned writes ([#561](https://github.com/sharksforarms/deku/pull/561)) |
| 33 | +- Fix CString byte length reading ([#563](https://github.com/sharksforarms/deku/pull/563)) |
| 34 | + |
5 | 35 | ## Added |
6 | 36 |
|
7 | 37 | - The `alloc` feature, allowing use in environments lacking a heap [#582](https://github.com/sharksforarms/deku/pull/582) |
|
0 commit comments