From f507aa3665d661bf49f40d7b3ecc457ebcdb5d78 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2024 06:37:16 +0000 Subject: [PATCH 1/2] chore: release v0.4.17 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c30368..ac845ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), ## Unreleased +## [0.4.17](https://github.com/Nullus157/async-compression/compare/v0.4.16...v0.4.17) - 2024-10-20 + +### Other + +- Do not advance buffer in first flush in futures bufread decoder impl +- Do not consume buf on first flush tokio bufread decoder impl +- Fix panic: cannot consume from pending buffer + ## [0.4.16](https://github.com/Nullus157/async-compression/compare/v0.4.15...v0.4.16) - 2024-10-16 ### Other diff --git a/Cargo.toml b/Cargo.toml index 97ba94c..fbf3f11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-compression" -version = "0.4.16" +version = "0.4.17" authors = ["Wim Looman ", "Allen Bui "] edition = "2018" license = "MIT OR Apache-2.0" From 785dd31508bf1570394ac9017eb39bfef1090ff2 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 20 Oct 2024 12:56:34 +0100 Subject: [PATCH 2/2] docs: update changelog Signed-off-by: Rob Ede --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac845ff..6e688d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0), ## [0.4.17](https://github.com/Nullus157/async-compression/compare/v0.4.16...v0.4.17) - 2024-10-20 -### Other +### Fixed -- Do not advance buffer in first flush in futures bufread decoder impl -- Do not consume buf on first flush tokio bufread decoder impl -- Fix panic: cannot consume from pending buffer +- Fix occasional panics when consuming from pending buffers. ## [0.4.16](https://github.com/Nullus157/async-compression/compare/v0.4.15...v0.4.16) - 2024-10-16