diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9936889..c86447d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # CHANGELOG +## Version 3.17.0, 2023-10-29 + +### Security (SEC) +- Infinite recursion when using PdfWriter(clone_from=reader) (#2264) + +### New Features (ENH) +- Add parameter to select images to be removed (#2214) + +### Bug Fixes (BUG) +- Correctly handle image mode 1 with FlateDecode (#2249) +- Error when filling a value with parentheses #2268 (#2269) +- Handle empty root outline (#2239) + + +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.16.4...3.17.0) + ## Version 3.16.4, 2023-10-10 ### Bug Fixes (BUG) diff --git a/pypdf/_version.py b/pypdf/_version.py index b087c0251..a3207ca50 100644 --- a/pypdf/_version.py +++ b/pypdf/_version.py @@ -1 +1 @@ -__version__ = "3.16.4" +__version__ = "3.17.0"