diff --git a/CHANGELOG.md b/CHANGELOG.md index 1748f093..f7f21679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.2.1](https://github.com/zip-rs/zip2/compare/v1.2.0...v1.2.1) - 2024-05-06 + +### 🐛 Bug Fixes +- Prevent panic when trying to read a file with an unsupported compression method +- Prevent panic after reading an invalid LZMA file +- Make `Stored` the default compression method if `Deflated` isn't available, so that zip files are readable by as much software as possible +- version_needed was wrong when e.g. cfg(bzip2) but current file wasn't bzip2 ([#100](https://github.com/zip-rs/zip2/pull/100)) +- file paths shouldn't start with slashes ([#102](https://github.com/zip-rs/zip2/pull/102)) + +### 🚜 Refactor +- Overhaul `impl Arbitrary for FileOptions` +- Remove unused `atomic` module + ## [1.2.0](https://github.com/zip-rs/zip2/compare/v1.1.4...v1.2.0) - 2024-05-06 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 683ad7ac..bcd6119e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "1.2.0" +version = "1.2.1" authors = [ "Mathijs van de Nes ", "Marli Frost ",