From 6cc253e838b8adcce0ff80a6e804c4536f3f6c98 Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 7 Aug 2022 12:27:41 +0200 Subject: [PATCH] REL: 2.10.0 New Features (ENH): - "with" support for PdfMerger and PdfWriter (#1193) - Add AnnotationBuilder.text(...) to build text annotations (#1202) Bug Fixes (BUG): - Allow IndirectObjects as stream filters (#1211) Documentation (DOC): - Font scrambling - Page vs Content scaling (#1208) - Example for orientation parameter of extract_text (#1206) - Fix AnnotationBuilder parameter formatting (#1204) Developer Experience (DEV): - Add flake8-print (#1203) Maintenance (MAINT): - Introduce WrongPasswordError / FileNotDecryptedError / EmptyFileError (#1201) Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.9.0...2.10.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ PyPDF2/_version.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ef7e0d28..1e1f756ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # CHANGELOG + +## Version 2.10.0, 2022-08-07 + +### New Features (ENH) +- "with" support for PdfMerger and PdfWriter (#1193) +- Add AnnotationBuilder.text(...) to build text annotations (#1202) + +### Bug Fixes (BUG) +- Allow IndirectObjects as stream filters (#1211) + +### Documentation (DOC) +- Font scrambling +- Page vs Content scaling (#1208) +- Example for orientation parameter of extract_text (#1206) +- Fix AnnotationBuilder parameter formatting (#1204) + +### Developer Experience (DEV) +- Add flake8-print (#1203) + +### Maintenance (MAINT) +- Introduce WrongPasswordError / FileNotDecryptedError / EmptyFileError (#1201) + +Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.9.0...2.10.0 + ## Version 2.9.0, 2022-07-31 ### New Features (ENH) diff --git a/PyPDF2/_version.py b/PyPDF2/_version.py index 43ce13db0..1c622223b 100644 --- a/PyPDF2/_version.py +++ b/PyPDF2/_version.py @@ -1 +1 @@ -__version__ = "2.9.0" +__version__ = "2.10.0"