diff --git a/CHANGELOG b/CHANGELOG index 5a5cbc0b9..c6c9f52d7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,37 @@ +Version 2.1.1, 2022-06-12 +------------------------- + +New Features (ENH): +- Add support for pathlib as input for PdfReader (#979) + +Performance Improvements (PI): +- Optimize read_next_end_line (#646) + +Bug Fixes (BUG): +- Adobe Acrobat \'Would you like to save this file?\' (#970) + +Documentation (DOC): +- Notes on annotations (#982) +- Who uses PyPDF2 +- intendet \xe2\x9e\x94 in robustness page (#958) + +Maintenance (MAINT): +- pre-commit / requirements.txt updates (#977) +- Mark read_next_end_line as deprecated (#965) +- Export `PageObject` in PyPDF2 root (#960) + +Testing (TST): +- Add MCVE of issue #416 (#980) +- FlateDecode.decode decodeParms (#964) +- Xmp module (#962) +- utils.paeth_predictor (#959) + +Code Style (STY): +- Use more tuples and list/dict comprehensions (#976) + +Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.1.0...2.1.1 + + Version 2.1.0, 2022-06-06 ------------------------- diff --git a/PyPDF2/_version.py b/PyPDF2/_version.py index 9aa3f9036..58039f505 100644 --- a/PyPDF2/_version.py +++ b/PyPDF2/_version.py @@ -1 +1 @@ -__version__ = "2.1.0" +__version__ = "2.1.1"