diff --git a/HISTORY.rst b/HISTORY.rst index df60544..ecad247 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,15 @@ Changelog ========= -1.2.0.1 (2025-03-05) +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) -------------------- - Added support for the free-threaded build of Python 3.14. 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"