Skip to content

Commit af0f334

Browse files
authored
chore: release v6.0.0 (#442)
* chore: release v5.2.0 * Clarify description of #439 in CHANGELOG Signed-off-by: Chris Hennick <[email protected]> * Remove deprecated static feature flags * Update CHANGELOG for this being the 6.0.0 release --------- Signed-off-by: Chris Hennick <[email protected]>
1 parent 03fcd09 commit af0f334

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.0.0](https://github.com/zip-rs/zip2/compare/v5.1.1...v6.0.0) - 2025-10-09
11+
12+
### <!-- 0 -->🚀 Features
13+
14+
- Add by_index_with_options(), which can be used to ignore encryption in a file's metadata ([#439](https://github.com/zip-rs/zip2/pull/439)) and may be used for other file-specific overrides in the future.
15+
16+
### <!-- 7 -->⚙️ Miscellaneous Tasks
17+
18+
- [**breaking**] `FileOptions::add_extra_data` is now generic and accepts any `AsRef<[u8]>`. (#435)
19+
- [**breaking**] Remove `lzma-static` and `xz-static` feature flags, which are deprecated synonyms of `lzma` and `xz`. (#405, #425)
20+
1021
## [5.1.1](https://github.com/zip-rs/zip2/compare/v5.1.0...v5.1.1) - 2025-09-11
1122

1223
### <!-- 1 -->🐛 Bug Fixes

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,14 @@ deflate-flate2 = ["_deflate-any", "dep:flate2"]
7676
deflate-flate2-zlib-rs = ["deflate-flate2", "flate2/zlib-rs"]
7777
# Pull in flate2 and the zlib backend; only use this if you need a dynamically linked system zlib
7878
deflate-flate2-zlib = ["deflate-flate2", "flate2/zlib"]
79+
# Pull in zopfli (write-only DEFLATE, slower than flate2 with better compression ratios)
7980
deflate-zopfli = ["dep:zopfli", "_deflate-any"]
8081
jiff-02 = ["dep:jiff"]
8182
nt-time = ["dep:nt-time"]
8283
lzma = ["dep:lzma-rust2"]
83-
lzma-static = ["lzma"]
8484
ppmd = ["dep:ppmd-rust"]
8585
unreserved = []
8686
xz = ["dep:lzma-rust2"]
87-
xz-static = ["lzma"]
8887
legacy-zip = ["bitstream-io"]
8988
default = [
9089
"aes-crypto",

0 commit comments

Comments
 (0)