From b87afe4ee8a70bf1be0be27fc53e243468871fbc Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Sun, 15 Oct 2023 11:41:17 -0400 Subject: [PATCH] 0.16.1 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d880fbb4..446b4553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.1] - 2023-10-15 + +- **MP4**: Skip unexpected or empty data atoms in ilst ([PR](https://github.com/Serial-ATA/lofty-rs/pull/261)) + - It is possible for an `ilst` item to have both empty `data` atoms and unexpected (likely vendor-specific) atoms other than `data`. + These are both cases we can safely ignore unless using `ParsingMode::Strict`. + ## [0.16.0] - 2023-10-01 ## Added @@ -560,7 +566,8 @@ See [ogg_pager's changelog](ogg_pager/CHANGELOG.md). ### Removed - `ErrorKind::BadExtension` -[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.16.0...HEAD +[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.16.1...HEAD +[0.16.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.16.0...0.16.1 [0.16.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.15.0...0.16.0 [0.15.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.14.0...0.15.0 [0.14.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.13.0...0.14.0 diff --git a/Cargo.toml b/Cargo.toml index 2b93ed0b..f12ce53f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lofty" -version = "0.16.0" +version = "0.16.1" authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"] edition = "2021" license = "MIT OR Apache-2.0"