Skip to content

Commit d35667b

Browse files
committed
v0.19.2 for flate2 version bump
1 parent 8839b34 commit d35667b

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## v0.19.2 -- 2025-10-17
6+
7+
### Changed
8+
9+
- Updated `flate2` dependency minimum version to `1.1.0` to include more recent fixes for `zlib-rs` backend.
10+
- Add more backends for `flate2`:
11+
- `gz-zlib-ng` feature for `flate2/zlib-rs-ng`
12+
- `gz-zlib-cloudflare` feature for `flate2/cloudflare_zlib`
13+
514
## v0.19.1 -- 2025-10-15
615

716
### Changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oneio"
3-
version = "0.19.1"
3+
version = "0.19.2"
44
authors = ["Mingwei Zhang <[email protected]>"]
55
edition = "2021"
66
readme = "README.md"
@@ -31,7 +31,7 @@ suppaftp = { version = "7.0", optional = true }
3131

3232
# feature: compressions
3333
# Turn off flate2 default-features so we can explicitly choose backend via features
34-
flate2 = { version = "1", optional = true, default-features = false }
34+
flate2 = { version = "1.1", optional = true, default-features = false }
3535
bzip2 = { version = "0.6.0", optional = true }
3636
lz4 = { version = "1.24", optional = true }
3737
xz2 = { version = "0.1", optional = true }
@@ -79,10 +79,10 @@ s3 = ["rust-s3"]
7979
gz = ["gz-zlib-rs"]
8080
# internal feature to enable gzip support
8181
any_gz = []
82-
# fastest Rust impl with some unsafe code
82+
gz-miniz = ["any_gz", "flate2/miniz_oxide"]
8383
gz-zlib-rs = ["any_gz", "flate2/zlib-rs"]
84-
# slower pure safe Rust impl
85-
gz-miniz = ["any_gz", "flate2/miniz_oxide", "flate2/any_impl"]
84+
gz-zlib-ng = ["any_gz", "flate2/zlib-ng"]
85+
gz-zlib-cloudflare = ["any_gz", "flate2/cloudflare_zlib"]
8686

8787
bz = ["bzip2"]
8888
lz = ["lz4"]

0 commit comments

Comments
 (0)