Skip to content
Merged
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.28", path = "crates/compression-codecs" }
compression-core = { version = "0.4.28", path = "crates/compression-core" }
compression-codecs = { version = "0.4.29", path = "crates/compression-codecs" }
compression-core = { version = "0.4.29", path = "crates/compression-core" }
futures-core = { version = "0.3", default-features = false }
memchr = "2"
pin-project-lite = "0.2"
Expand Down
7 changes: 7 additions & 0 deletions crates/async-compression/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.29](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.28...async-compression-v0.4.29) - 2025-08-28

### Other

- Update Deps.rs badge ([#380](https://github.com/Nullus157/async-compression/pull/380))
- move async-compression to crates/ ([#379](https://github.com/Nullus157/async-compression/pull/379))

## [0.4.28](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.27...async-compression-v0.4.28) - 2025-08-23

### 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.28"
version = "0.4.29"
description = """
Adaptors between compression crates and Rust's modern asynchronous IO types.
"""
Expand Down
7 changes: 7 additions & 0 deletions crates/compression-codecs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.29](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.28...compression-codecs-v0.4.29) - 2025-08-28

### Other

- Update Deps.rs badge ([#380](https://github.com/Nullus157/async-compression/pull/380))
- move async-compression to crates/ ([#379](https://github.com/Nullus157/async-compression/pull/379))

## [0.4.28](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.27...compression-codecs-v0.4.28) - 2025-08-23

### Fixed
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.28"
version = "0.4.29"
description = """
Adaptors for various compression algorithms.
"""
Expand Down
8 changes: 8 additions & 0 deletions crates/compression-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.29](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.28...compression-core-v0.4.29) - 2025-08-28

### Other

- Update Deps.rs badge ([#380](https://github.com/Nullus157/async-compression/pull/380))
- move async-compression to crates/ ([#379](https://github.com/Nullus157/async-compression/pull/379))
- Refactor compression_core::util ([#373](https://github.com/Nullus157/async-compression/pull/373))

## [0.4.28](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.27...compression-core-v0.4.28) - 2025-08-23

### Fixed
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.28"
version = "0.4.29"
description = """
Abstractions for compression algorithms.
"""
Expand Down
Loading