From d85dbe9c26f5d905e88f6a4723b490dde65973be Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 21 Jul 2024 11:48:13 +0200 Subject: [PATCH 1/2] REL: 4.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What's new ### Bug Fixes (BUG) - Cope with Matrix entry in field annotations (#2736) ### Robustness (ROB) - Cope with fields with upside down box/rectangle (#2729) by @pubpub-zz ### Documentation (DOC) - Update Link Documentation Example (#2759) by @jparris - Make table consistent with pdf-version-support.md (#2758) by @j-t-1 - Add feature support by pypdf (#2738) by @j-t-1 - Move JavaScript example (#2746) by @j-t-1 - Added example for downloading a PDF from Google Cloud Storage (#2745) by @prodeveloper - Miscellaneous tiny changes (#2744) by @j-t-1 - Amend comment with rectangle duplication (#2733) by @j-t-1 - Use enumerate in extract example (#2727) by @j-t-1 - Tiny changes (#2723) by @j-t-1 ### Maintenance (MAINT) - Remove redundant pass statement (#2739) by @j-t-1 - Update Python version support documentation (#2740) by @j-t-1 - Remove redundant super() (#2734) by @j-t-1 - Add deprecate_with_replacement to StreamObject.initializeFromD… (#2728) by @j-t-1 ### Code Style (STY) - Change argument type (#2741) by @j-t-1 - Use endswith instead of logical equals (#2732) by @j-t-1 [Full Changelog](https://github.com/py-pdf/pypdf/compare/4.3.0...4.3.1) --- CHANGELOG.md | 13 +++++++++++++ pypdf/_version.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09a676618f..e79f07ee7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## Version 4.3.1, 2024-07-21 + +### Bug Fixes (BUG) +- Cope with Matrix entry in field annotations (#2736) + +### Robustness (ROB) +- Cope with fields with upside down box/rectangle (#2729) + +### Maintenance (MAINT) +- Add deprecate_with_replacement to StreamObject.initializeFromD… (#2728) + +[Full Changelog](https://github.com/py-pdf/pypdf/compare/4.3.0...4.3.1) + ## Version 4.3.0, 2024-06-23 ### New Features (ENH) diff --git a/pypdf/_version.py b/pypdf/_version.py index 111dc9172a..ed48cdab09 100644 --- a/pypdf/_version.py +++ b/pypdf/_version.py @@ -1 +1 @@ -__version__ = "4.3.0" +__version__ = "4.3.1" From ebd1b31e160d5621e7657dab600efafbeb2e0a8b Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 21 Jul 2024 21:11:31 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e79f07ee7d..c07dca0998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### Maintenance (MAINT) - Add deprecate_with_replacement to StreamObject.initializeFromD… (#2728) +- Deal with cryptography>=43 moving ARC4 (#2765) [Full Changelog](https://github.com/py-pdf/pypdf/compare/4.3.0...4.3.1)