From 80b8d1eceddb6905d52f9a427aee6973a15d4e46 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Sat, 6 May 2023 15:50:59 +0100 Subject: [PATCH] publish 0.6.5 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd79e391..4faa68d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.6.5] +### Changed + +- Added experimental [`zip::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting files with PKWARE encryption. + ## [0.6.4] ### Changed diff --git a/Cargo.toml b/Cargo.toml index 5468919a..bb219c73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "0.6.4" +version = "0.6.5" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick "] license = "MIT" repository = "https://github.com/zip-rs/zip.git" diff --git a/README.md b/README.md index d8f91b78..584a747e 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ With all default features: ```toml [dependencies] -zip = "0.6.4" +zip = "5" ``` Without the default features: ```toml [dependencies] -zip = { version = "0.6.4", default-features = false } +zip = { version = "0.6.5", default-features = false } ``` The features available are: diff --git a/src/lib.rs b/src/lib.rs index 7f3e7a01..328b7e39 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,6 +50,6 @@ mod zipcrypto; /// /// ```toml /// [dependencies] -/// zip = "=0.6.4" +/// zip = "=0.6.5" /// ``` pub mod unstable;