Skip to content

Commit a4f6e98

Browse files
chore: release
1 parent 83a06fe commit a4f6e98

File tree

7 files changed

+40
-5
lines changed

7 files changed

+40
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ categories = ["compression", "asynchronous"]
1010
edition = "2018"
1111

1212
[workspace.dependencies]
13-
compression-codecs = { version = "0.4.31", path = "crates/compression-codecs" }
14-
compression-core = { version = "0.4.29", path = "crates/compression-core" }
13+
compression-codecs = { version = "0.4.32", path = "crates/compression-codecs" }
14+
compression-core = { version = "0.4.30", path = "crates/compression-core" }
1515
futures-core = { version = "0.3", default-features = false }
1616
pin-project-lite = "0.2"
1717

crates/async-compression/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
4444

4545
## Unreleased
4646

47+
## [0.4.33](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.32...async-compression-v0.4.33) - 2025-11-05
48+
49+
### Other
50+
51+
- Update async-compression to use codecs v2 ([#410](https://github.com/Nullus157/async-compression/pull/410))
52+
- Dedup `write::Encoder` and simplify `write::Decoder` impl ([#409](https://github.com/Nullus157/async-compression/pull/409))
53+
- Dedup `write::Decoder::poll_write` ([#408](https://github.com/Nullus157/async-compression/pull/408))
54+
- Optimize `BufWriter::poll_*` method ([#407](https://github.com/Nullus157/async-compression/pull/407))
55+
- Dedup `write::{AsyncBufWriter, BufWriter, Decoder}` ([#406](https://github.com/Nullus157/async-compression/pull/406))
56+
- Early return in `do_poll_read` instead of keep polling ([#404](https://github.com/Nullus157/async-compression/pull/404))
57+
- Deduplicate `bufread::Encoder` impl ([#402](https://github.com/Nullus157/async-compression/pull/402))
58+
- Rename `impl_do_poll_read!` to `impl_decoder!` ([#403](https://github.com/Nullus157/async-compression/pull/403))
59+
- *(deps)* update proptest-derive requirement from 0.6 to 0.7 ([#399](https://github.com/Nullus157/async-compression/pull/399))
60+
- Deduplicate `generic::bufread::Decoder` impl of tokio/futures-io ([#391](https://github.com/Nullus157/async-compression/pull/391))
61+
- Disable nightly feature `doc_auto_cfg` on docsrs ([#392](https://github.com/Nullus157/async-compression/pull/392))
62+
4763
## [0.4.32](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.31...async-compression-v0.4.32) - 2025-09-25
4864

4965
### Other

crates/async-compression/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-compression"
3-
version = "0.4.32"
3+
version = "0.4.33"
44
description = """
55
Adaptors between compression crates and Rust's modern asynchronous IO types.
66
"""

crates/compression-codecs/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.32](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.31...compression-codecs-v0.4.32) - 2025-11-05
11+
12+
### Added
13+
14+
- allow reading uncompressed size ([#396](https://github.com/Nullus157/async-compression/pull/396))
15+
16+
### Other
17+
18+
- Implement new traits `DecodeV2`/`EncodeV2` ([#398](https://github.com/Nullus157/async-compression/pull/398))
19+
- Re-export core in codecs ([#395](https://github.com/Nullus157/async-compression/pull/395))
20+
- Disable nightly feature `doc_auto_cfg` on docsrs ([#392](https://github.com/Nullus157/async-compression/pull/392))
21+
1022
## [0.4.31](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.30...compression-codecs-v0.4.31) - 2025-09-25
1123

1224
### Other

crates/compression-codecs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compression-codecs"
3-
version = "0.4.31"
3+
version = "0.4.32"
44
description = """
55
Adaptors for various compression algorithms.
66
"""

crates/compression-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.30](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.29...compression-core-v0.4.30) - 2025-11-05
11+
12+
### Other
13+
14+
- Implement new traits `DecodeV2`/`EncodeV2` ([#398](https://github.com/Nullus157/async-compression/pull/398))
15+
- Disable nightly feature `doc_auto_cfg` on docsrs ([#392](https://github.com/Nullus157/async-compression/pull/392))
16+
1017
## [0.4.29](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.28...compression-core-v0.4.29) - 2025-08-28
1118

1219
### Other

crates/compression-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compression-core"
3-
version = "0.4.29"
3+
version = "0.4.30"
44
description = """
55
Abstractions for compression algorithms.
66
"""

0 commit comments

Comments
 (0)