From a34569089e6699b2461d71143dbb2a0a0ff1796b Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Tue, 5 Jul 2022 14:37:03 +0200 Subject: [PATCH] REL: 2.4.2 New Features (ENH): - Add PdfReader.xfa attribute (#1026) Bug Fixes (BUG): - Wrong page inserted when PdfMerger.merge is done (#1063) - Resolve IndirectObject when it refers to a free entry (#1054) Developer Experience (DEV): - Added {posargs} to tox.ini (#1055) Maintenance (MAINT): - Remove PyPDF2._utils.bytes_type (#1053) Testing (TST): - Scale page (indirect rect object) (#1057) - Simplify pathlib PdfReader test (#1056) - IndexError of VirtualList (#1052) - Invalid XML in xmp information (#1051) - No pycryptodome (#1050) - Increase test coverage (#1045) Code Style (STY): - DOC of compress_content_streams (#1061) - Minimize diff for #879 (#1049) Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.4.1...2.4.2 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ PyPDF2/_version.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9375e68a..a08df2265 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # CHANGELOG +## Version 2.4.2, 2022-07-05 + +### New Features (ENH) +- Add PdfReader.xfa attribute (#1026) + +### Bug Fixes (BUG) +- Wrong page inserted when PdfMerger.merge is done (#1063) +- Resolve IndirectObject when it refers to a free entry (#1054) + +### Developer Experience (DEV) +- Added {posargs} to tox.ini (#1055) + +### Maintenance (MAINT) +- Remove PyPDF2._utils.bytes_type (#1053) + +### Testing (TST) +- Scale page (indirect rect object) (#1057) +- Simplify pathlib PdfReader test (#1056) +- IndexError of VirtualList (#1052) +- Invalid XML in xmp information (#1051) +- No pycryptodome (#1050) +- Increase test coverage (#1045) + +### Code Style (STY) +- DOC of compress_content_streams (#1061) +- Minimize diff for #879 (#1049) + +Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.4.1...2.4.2 + ## Version 2.4.1, 2022-06-30 ### New Features (ENH) diff --git a/PyPDF2/_version.py b/PyPDF2/_version.py index 54499df34..60be088dc 100644 --- a/PyPDF2/_version.py +++ b/PyPDF2/_version.py @@ -1 +1 @@ -__version__ = "2.4.1" +__version__ = "2.4.2"