From 651a87f8814984db0f01b0667c770bec8d2f04e9 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 14 May 2023 09:47:25 -0700 Subject: [PATCH] Update CHANGELOG and bump version --- CHANGELOG.md | 6 ++++-- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 366522d9..c1c8fedd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -136,8 +136,10 @@ - Alignment and extra-data fields are now attributes of [`zip_next::unstable::write::FileOptions`], allowing them to be specified for `add_directory` and `add_symlink`. - - Extra-data fields no longer have to be formatted by the caller. - + - Extra-data fields are now formatted by the `FileOptions` method `add_extra_data`. + - Improved performance, especially for `shallow_copy_file` and `deep_copy_file` on files with extra data. + ### Fixed - Fixes a rare bug where the size of the extra-data field could overflow when `large_file` was set. + - Fixes more cases of a bug when ZIP64 magic bytes occur in filenames. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 6d1fe2f0..f537a4e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip_next" -version = "0.7.5" +version = "0.8.0" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick ", "Chris Hennick "] license = "MIT" diff --git a/README.md b/README.md index cd418b81..cdcadb09 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ With all default features: ```toml [dependencies] -zip_next = "0.7.5" +zip_next = "0.8.0" ``` Without the default features: ```toml [dependencies] -zip_next = { version = "0.7.5", default-features = false } +zip_next = { version = "0.8.0", default-features = false } ``` The features available are: