Update CHANGELOG and bump version

This commit is contained in:
Chris Hennick 2023-05-14 09:47:25 -07:00
parent 170e5c6f58
commit 651a87f881
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
3 changed files with 7 additions and 5 deletions

View file

@ -136,8 +136,10 @@
- Alignment and extra-data fields are now attributes of [`zip_next::unstable::write::FileOptions`], allowing them to be
specified for `add_directory` and `add_symlink`.
- Extra-data fields no longer have to be formatted by the caller.
- Extra-data fields are now formatted by the `FileOptions` method `add_extra_data`.
- Improved performance, especially for `shallow_copy_file` and `deep_copy_file` on files with extra data.
### Fixed
- Fixes a rare bug where the size of the extra-data field could overflow when `large_file` was set.
- Fixes more cases of a bug when ZIP64 magic bytes occur in filenames.

View file

@ -1,6 +1,6 @@
[package]
name = "zip_next"
version = "0.7.5"
version = "0.8.0"
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"

View file

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