Skip to content

Commit 9d093b2

Browse files
chore: release
1 parent ad3d41d commit 9d093b2

File tree

7 files changed

+32
-5
lines changed

7 files changed

+32
-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.32", path = "crates/compression-codecs" }
14-
compression-core = { version = "0.4.30", path = "crates/compression-core" }
13+
compression-codecs = { version = "0.4.33", path = "crates/compression-codecs" }
14+
compression-core = { version = "0.4.31", 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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
4444

4545
## Unreleased
4646

47+
## [0.4.34](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.33...async-compression-v0.4.34) - 2025-11-13
48+
49+
### Added
50+
51+
- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))
52+
53+
### Other
54+
55+
- Refactor `bufread::decoder`: Extract poll ready check ([#418](https://github.com/Nullus157/async-compression/pull/418))
56+
- Optimize condition for removing written data in BufWriter ([#415](https://github.com/Nullus157/async-compression/pull/415))
57+
4758
## [0.4.33](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.32...async-compression-v0.4.33) - 2025-11-06
4859

4960
### Fixed

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.33"
3+
version = "0.4.34"
44
description = """
55
Adaptors between compression crates and Rust's modern asynchronous IO types.
66
"""

crates/compression-codecs/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.33](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.32...compression-codecs-v0.4.33) - 2025-11-13
11+
12+
### Added
13+
14+
- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))
15+
16+
### Other
17+
18+
- Set msrv for codecs to 1.83 ([#422](https://github.com/Nullus157/async-compression/pull/422))
19+
1020
## [0.4.32](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.31...compression-codecs-v0.4.32) - 2025-11-06
1121

1222
### Added

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.32"
3+
version = "0.4.33"
44
description = """
55
Adaptors for various compression algorithms.
66
"""

crates/compression-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.31](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.30...compression-core-v0.4.31) - 2025-11-13
11+
12+
### Added
13+
14+
- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))
15+
1016
## [0.4.30](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.29...compression-core-v0.4.30) - 2025-11-06
1117

1218
### 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.30"
3+
version = "0.4.31"
44
description = """
55
Abstractions for compression algorithms.
66
"""

0 commit comments

Comments
 (0)