Bump version to 0.7.5

This commit is contained in:
Chris Hennick 2023-05-12 12:43:24 -07:00
parent 9b65b8a523
commit 24752c2822
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
3 changed files with 11 additions and 5 deletions

View file

@ -116,5 +116,11 @@
### Merged from upstream ### Merged from upstream
- Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting - Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting
files with PKWARE encryption. files with PKWARE encryption.
## [0.7.5]
### Fixed
- Fixed a bug that occurs when ZIP64 magic bytes occur twice in a filename or across two filenames.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zip_next" name = "zip_next"
version = "0.7.4" version = "0.7.5"
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>",
"Chris Hennick <hennickc@amazon.com>"] "Chris Hennick <hennickc@amazon.com>"]
license = "MIT" license = "MIT"

View file

@ -32,14 +32,14 @@ With all default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = "0.7.4" zip_next = "0.7.5"
``` ```
Without the default features: Without the default features:
```toml ```toml
[dependencies] [dependencies]
zip_next = { version = "0.7.4", default-features = false } zip_next = { version = "0.7.5", default-features = false }
``` ```
The features available are: The features available are: