From 0d3f796870a4bcdd88d2a9a963682c2f96502e9b Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Fri, 21 Aug 2026 07:55:53 -0600 Subject: [PATCH 1/2] Correct date in 1.2.0.1 changelog entry --- HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index df60544..dbf7a80 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ Changelog ========= -1.2.0.1 (2025-03-05) +1.2.0.1 (2026-03-05) -------------------- - Added support for the free-threaded build of Python 3.14. From f0363d7c53acb856fcf7276e36cbef6c0c1d2540 Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Fri, 21 Aug 2026 07:54:46 -0600 Subject: [PATCH 2/2] Prepare 1.2.0.2 release --- HISTORY.rst | 8 ++++++++ src/brotlicffi/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index dbf7a80..ecad247 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ Changelog ========= +1.2.0.2 (2026-08-21) +-------------------- + +- Fixed a bug where ``Decompressor.decompress()`` could leave stale + unconsumed input behind after fully consuming a chunk of compressed + data, causing subsequent calls to fail or re-process old data. +- Since cibuildwheel dropped support, this release does not include Python 3.8 wheels. + 1.2.0.1 (2026-03-05) -------------------- diff --git a/src/brotlicffi/__init__.py b/src/brotlicffi/__init__.py index 6382f45..f7b564d 100644 --- a/src/brotlicffi/__init__.py +++ b/src/brotlicffi/__init__.py @@ -5,4 +5,4 @@ Compressor, MODE_GENERIC, MODE_TEXT, MODE_FONT, error, Error ) -__version__ = "1.2.0.1" +__version__ = "1.2.0.2"