From 21a20584bc9e05dfa4f3c5b0bc420a1389fae2c3 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Tue, 16 May 2023 07:40:54 +0100 Subject: [PATCH] publish 0.6.6 with aes 0.8 --- 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 4faa68d6..96c6994f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.6.6] +### Changed + +- Updated `aes` dependency to `0.8.2` (https://github.com/zip-rs/zip/pull/354) + ## [0.6.5] ### Changed diff --git a/Cargo.toml b/Cargo.toml index 6ff550a7..510df9ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip" -version = "0.6.5" +version = "0.6.6" 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 584a747e..f06cdbb5 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ With all default features: ```toml [dependencies] -zip = "5" +zip = "0.6" ``` Without the default features: ```toml [dependencies] -zip = { version = "0.6.5", default-features = false } +zip = { version = "0.6.6", default-features = false } ``` The features available are: diff --git a/src/lib.rs b/src/lib.rs index 328b7e39..e2228e5b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,6 +50,6 @@ mod zipcrypto; /// /// ```toml /// [dependencies] -/// zip = "=0.6.5" +/// zip = "=0.6.6" /// ``` pub mod unstable;