From a1f239980ebf4e78e36f2e45a1e00705c77adb73 Mon Sep 17 00:00:00 2001 From: Chris <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 6 May 2024 23:44:12 +0000 Subject: [PATCH] chore: release Signed-off-by: Chris <4961925+Pr0methean@users.noreply.github.com> --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1748f093f..f7f216791 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 683ad7ac7..bcd6119e1 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 ",