publish 0.6.6 with aes 0.8

This commit is contained in:
Marli Frost 2023-05-16 07:40:54 +01:00
parent 4b8f99c238
commit 21a20584bc
4 changed files with 9 additions and 4 deletions

View file

@ -1,5 +1,10 @@
# Changelog # Changelog
## [0.6.6]
### Changed
- Updated `aes` dependency to `0.8.2` (https://github.com/zip-rs/zip/pull/354)
## [0.6.5] ## [0.6.5]
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zip" name = "zip"
version = "0.6.5" version = "0.6.6"
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"] authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
license = "MIT" license = "MIT"
repository = "https://github.com/zip-rs/zip.git" repository = "https://github.com/zip-rs/zip.git"

View file

@ -32,14 +32,14 @@ With all default features:
```toml ```toml
[dependencies] [dependencies]
zip = "5" zip = "0.6"
``` ```
Without the default features: Without the default features:
```toml ```toml
[dependencies] [dependencies]
zip = { version = "0.6.5", default-features = false } zip = { version = "0.6.6", default-features = false }
``` ```
The features available are: The features available are:

View file

@ -50,6 +50,6 @@ mod zipcrypto;
/// ///
/// ```toml /// ```toml
/// [dependencies] /// [dependencies]
/// zip = "=0.6.5" /// zip = "=0.6.6"
/// ``` /// ```
pub mod unstable; pub mod unstable;