Skip to content

Commit 86371ba

Browse files
chore: release (#371)
* chore: release v0.4.28 * Release 0.4.28 Signed-off-by: Jiahao XU <[email protected]> --------- Signed-off-by: Jiahao XU <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <[email protected]>
1 parent 154da15 commit 86371ba

File tree

6 files changed

+84
-5
lines changed

6 files changed

+84
-5
lines changed

CHANGELOG.md

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

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

5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.4.28](https://github.com/Nullus157/async-compression/compare/async-compression-v0.4.27...async-compression-v0.4.28) - 2025-08-23
11+
12+
### Fixed
13+
14+
- fix wasi ci testing and update doc in README ([#367](https://github.com/Nullus157/async-compression/pull/367))
15+
16+
### Other
17+
18+
- Fix Cargo.toml: add back version for async-compression ([#372](https://github.com/Nullus157/async-compression/pull/372))
19+
- Have separate package.version field for compression-* ([#369](https://github.com/Nullus157/async-compression/pull/369))
20+
- Re-export compression_codecs as codecs ([#368](https://github.com/Nullus157/async-compression/pull/368))
21+
- Fix breaking API change ([#366](https://github.com/Nullus157/async-compression/pull/366))
22+
- Fix docs.rs build for compression-codecs ([#365](https://github.com/Nullus157/async-compression/pull/365))
23+
- Separate codecs as a separate crate, allow direct configuration ([#363](https://github.com/Nullus157/async-compression/pull/363))
24+
- *(deps)* bump actions/checkout from 4 to 5 ([#360](https://github.com/Nullus157/async-compression/pull/360))
25+
- Fix doc link for futures-io ([#361](https://github.com/Nullus157/async-compression/pull/361))
26+
# Changelog
27+
28+
All notable changes to this project will be documented in this file.
29+
530
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
631

732
## Unreleased

Cargo.toml

Lines changed: 3 additions & 3 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.27", path = "crates/compression-codecs" }
14-
compression-core = { version = "0.4.27", path = "crates/compression-core" }
13+
compression-codecs = { version = "0.4.28", path = "crates/compression-codecs" }
14+
compression-core = { version = "0.4.28", path = "crates/compression-core" }
1515
futures-core = { version = "0.3", default-features = false }
1616
memchr = "2"
1717
pin-project-lite = "0.2"
@@ -25,7 +25,7 @@ authors.workspace = true
2525
license.workspace = true
2626
categories.workspace = true
2727
edition.workspace = true
28-
version = "0.4.27"
28+
version = "0.4.28"
2929

3030
[package.metadata.docs.rs]
3131
all-features = true
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.4.28](https://github.com/Nullus157/async-compression/compare/compression-codecs-v0.4.27...compression-codecs-v0.4.28) - 2025-08-23
11+
12+
### Fixed
13+
14+
- fix wasi ci testing and update doc in README ([#367](https://github.com/Nullus157/async-compression/pull/367))
15+
16+
### Other
17+
18+
- Have separate package.version field for compression-* ([#369](https://github.com/Nullus157/async-compression/pull/369))
19+
- Fix docs.rs build for compression-codecs ([#365](https://github.com/Nullus157/async-compression/pull/365))

crates/compression-codecs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "compression-codecs"
33
description = """
44
Adaptors for various compression algorithms.
55
"""
6-
version = "0.4.27"
6+
version = "0.4.28"
77
authors.workspace = true
88
license.workspace = true
99
categories.workspace = true

crates/compression-core/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.4.28](https://github.com/Nullus157/async-compression/compare/compression-core-v0.4.27...compression-core-v0.4.28) - 2025-08-23
11+
12+
### Fixed
13+
14+
- fix wasi ci testing and update doc in README ([#367](https://github.com/Nullus157/async-compression/pull/367))
15+
16+
### Other
17+
18+
- Have separate package.version field for compression-* ([#369](https://github.com/Nullus157/async-compression/pull/369))
19+
- Separate codecs as a separate crate, allow direct configuration ([#363](https://github.com/Nullus157/async-compression/pull/363))
20+
- Release async-compression 0.4.8 ([#265](https://github.com/Nullus157/async-compression/pull/265))
21+
- prepare release 0.4.7
22+
- prepare release 0.4.6
23+
- prepare release 0.4.3
24+
- *(async-compression)* prepare release 0.4.2
25+
- prepare release 0.4.1 ([#236](https://github.com/Nullus157/async-compression/pull/236))
26+
- prepare async-compression release 0.4.0
27+
- add deps and license badge
28+
- remove references to old `stream` crate feature
29+
- update repo links
30+
- Update references to master branch
31+
- Enable testing with all possible feature sets
32+
- Update links in readme for repo location
33+
- Mention features for local testing
34+
- Update README.md
35+
- Add licenses and trivial readme

crates/compression-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "compression-core"
33
description = """
44
Abstractions for compression algorithms.
55
"""
6-
version = "0.4.27"
6+
version = "0.4.28"
77
authors.workspace = true
88
license.workspace = true
99
categories.workspace = true

0 commit comments

Comments
 (0)