Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ categories = ["compression", "asynchronous"]
edition = "2018"

[workspace.dependencies]
compression-codecs = { version = "0.4.32", path = "crates/compression-codecs" }
compression-core = { version = "0.4.30", path = "crates/compression-core" }
compression-codecs = { version = "0.4.33", path = "crates/compression-codecs" }
compression-core = { version = "0.4.31", path = "crates/compression-core" }
futures-core = { version = "0.3", default-features = false }
pin-project-lite = "0.2"

Expand Down
11 changes: 11 additions & 0 deletions crates/async-compression/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),

## Unreleased

## [0.4.34](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.33...async-compression-v0.4.34) - 2025-11-13

### Added

- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))

### Other

- Refactor `bufread::decoder`: Extract poll ready check ([#418](https://github.com/Nullus157/async-compression/pull/418))
- Optimize condition for removing written data in BufWriter ([#415](https://github.com/Nullus157/async-compression/pull/415))

## [0.4.33](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.32...async-compression-v0.4.33) - 2025-11-06

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/async-compression/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-compression"
version = "0.4.33"
version = "0.4.34"
description = """
Adaptors between compression crates and Rust's modern asynchronous IO types.
"""
Expand Down
10 changes: 10 additions & 0 deletions crates/compression-codecs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.33](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.32...compression-codecs-v0.4.33) - 2025-11-13

### Added

- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))

### Other

- Set msrv for codecs to 1.83 ([#422](https://github.com/Nullus157/async-compression/pull/422))

## [0.4.32](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.31...compression-codecs-v0.4.32) - 2025-11-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/compression-codecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compression-codecs"
version = "0.4.32"
version = "0.4.33"
description = """
Adaptors for various compression algorithms.
"""
Expand Down
6 changes: 6 additions & 0 deletions crates/compression-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.31](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.30...compression-core-v0.4.31) - 2025-11-13

### Added

- Add uninitialized output buffer support ([#414](https://github.com/Nullus157/async-compression/pull/414))

## [0.4.30](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.29...compression-core-v0.4.30) - 2025-11-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/compression-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compression-core"
version = "0.4.30"
version = "0.4.31"
description = """
Abstractions for compression algorithms.
"""
Expand Down