Bump version to 0.7.5
This commit is contained in:
parent
9b65b8a523
commit
24752c2822
3 changed files with 11 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -116,5 +116,11 @@
|
|||
|
||||
### Merged from upstream
|
||||
|
||||
- Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting
|
||||
files with PKWARE encryption.
|
||||
- Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting
|
||||
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.
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
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>",
|
||||
"Chris Hennick <hennickc@amazon.com>"]
|
||||
license = "MIT"
|
||||
|
|
|
@ -32,14 +32,14 @@ With all default features:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
zip_next = "0.7.4"
|
||||
zip_next = "0.7.5"
|
||||
```
|
||||
|
||||
Without the default features:
|
||||
|
||||
```toml
|
||||
[dependencies]
|
||||
zip_next = { version = "0.7.4", default-features = false }
|
||||
zip_next = { version = "0.7.5", default-features = false }
|
||||
```
|
||||
|
||||
The features available are:
|
||||
|
|
Loading…
Add table
Reference in a new issue