diff --git a/CHANGELOG.md b/CHANGELOG.md index f8bc2951a..1748f093f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.0](https://github.com/zip-rs/zip2/compare/v1.1.4...v1.2.0) - 2024-05-06 + +### 🚀 Features +- Add method `decompressed_size()` so non-recursive ZIP bombs can be detected + +### 🚜 Refactor +- Make `ZipWriter::finish()` consume the `ZipWriter` + +### ⚙️ Miscellaneous Tasks +- Use panic! rather than abort to ensure the fuzz harness can process the failure +- Update fuzz_write to use replace_with +- Remove a drop that can no longer be explicit +- Add `#![allow(unexpected_cfgs)]` in nightly + ## [1.1.4](https://github.com/zip-rs/zip2/compare/v1.1.3...v1.1.4) - 2024-05-04 ### 🐛 Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 80d8ce666..35131eced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "1.1.4" +version = "1.2.0" authors = [ "Mathijs van de Nes ", "Marli Frost ",