From 4dc15b51c463ac110dda652d2f57d0bc8bc4359e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 16:16:14 +0000 Subject: [PATCH 1/2] chore: release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8239def..2bf86c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), ## Unreleased +## [0.4.15](https://github.com/Nullus157/async-compression/compare/v0.4.14...v0.4.15) - 2024-10-13 + +### Other + +- move constructors back to top of rustdoc pages +- Merge pull request [#297](https://github.com/Nullus157/async-compression/pull/297) from link2xt/link2xt/passthrough-traits +- Pass through `AsyncRead` and `AsyncWrite` traits +- Fix tokio::bufread +- Fix lifetime in futures::bufread +- Fix typing error in futures::bufread +- Fix typing error in tokio::bufread +- Fix futures::bufread::generic::Decoder::do_poll_read impl +- Fix tokio::bufread::generic::Decoder::do_poll_read impl + ## [0.4.14](https://github.com/Nullus157/async-compression/compare/v0.4.13...v0.4.14) - 2024-10-10 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 0a79f33..9c44c84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-compression" -version = "0.4.14" +version = "0.4.15" authors = ["Wim Looman ", "Allen Bui "] edition = "2018" license = "MIT OR Apache-2.0" From e34f1a51ce10f36ec566fb8b9b0e2ab940b5c3e3 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 13 Oct 2024 17:29:05 +0100 Subject: [PATCH 2/2] docs: update changelog Signed-off-by: Rob Ede --- CHANGELOG.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bf86c6..544dc7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,17 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), ## [0.4.15](https://github.com/Nullus157/async-compression/compare/v0.4.14...v0.4.15) - 2024-10-13 -### Other - -- move constructors back to top of rustdoc pages -- Merge pull request [#297](https://github.com/Nullus157/async-compression/pull/297) from link2xt/link2xt/passthrough-traits -- Pass through `AsyncRead` and `AsyncWrite` traits -- Fix tokio::bufread -- Fix lifetime in futures::bufread -- Fix typing error in futures::bufread -- Fix typing error in tokio::bufread -- Fix futures::bufread::generic::Decoder::do_poll_read impl -- Fix tokio::bufread::generic::Decoder::do_poll_read impl +### Feature +- Implement pass-through `AsyncRead` or `AsyncWrite` where appropriate. +- Relax `AsyncRead`/`AsyncWrite` bounds on `*::{get_ref, get_mut, get_pin_mut, into_inner}()` methods. ## [0.4.14](https://github.com/Nullus157/async-compression/compare/v0.4.13...v0.4.14) - 2024-10-10