diff --git a/CHANGELOG.md b/CHANGELOG.md index 55badc44..3cb979d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -148,4 +148,14 @@ ### Fixed - - `ZipWriter` now once again implements `Send` if the underlying writer does. \ No newline at end of file + - `ZipWriter` now once again implements `Send` if the underlying writer does. + +## [0.8.2] + +### Fixed + + - Fixed an issue where code might spuriously fail during write fuzzing. + +### Added + + - New method `with_alignment` on `FileOptions`. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 3139a90e..22b3bc46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip_next" -version = "0.8.1" +version = "0.8.2" authors = ["Mathijs van de Nes ", "Marli Frost ", "Ryan Levick ", "Chris Hennick "] license = "MIT" diff --git a/README.md b/README.md index c9c7ba4d..be2cc8b5 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ With all default features: ```toml [dependencies] -zip_next = "0.8.1" +zip_next = "0.8.2" ``` Without the default features: ```toml [dependencies] -zip_next = { version = "0.8.1", default-features = false } +zip_next = { version = "0.8.2", default-features = false } ``` The features available are: