From 29a29fed96347f2404429540a1d0f73ab93a51ac Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sat, 29 Jul 2023 12:22:37 +0200 Subject: [PATCH] REL: 3.14.0 ## What's new ### New Features (ENH) - Accelerate image list keys generation (#2014) - Use `cryptography` for encryption/decryption as a fallback for PyCryptodome (#2000) - Extract LaTeX characters (#2016) - ASCIIHexDecode.decode now returns bytes instead of str (#1994) ### Bug Fixes (BUG) - Add RunLengthDecode filter (#2012) - Process /Separation ColorSpace (#2007) - Handle single element ColorSpace list (#2026) - Process lookup decoded as TextStringObjects (#2008) ### Robustness (ROB) - Cope with garbage collector during cloning (#1841) ### Maintenance (MAINT) - Cleanup of annotations (#1745) [Full Changelog](https://github.com/py-pdf/pypdf/compare/3.13.0...3.14.0) --- CHANGELOG.md | 22 ++++++++++++++++++++++ pypdf/_version.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a539a93b..fc310c0d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # CHANGELOG +## Version 3.14.0, 2023-07-29 + +### New Features (ENH) +- Accelerate image list keys generation (#2014) +- Use `cryptography` for encryption/decryption as a fallback for PyCryptodome (#2000) +- Extract LaTeX characters (#2016) +- ASCIIHexDecode.decode now returns bytes instead of str (#1994) + +### Bug Fixes (BUG) +- Add RunLengthDecode filter (#2012) +- Process /Separation ColorSpace (#2007) +- Handle single element ColorSpace list (#2026) +- Process lookup decoded as TextStringObjects (#2008) + +### Robustness (ROB) +- Cope with garbage collector during cloning (#1841) + +### Maintenance (MAINT) +- Cleanup of annotations (#1745) + +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.13.0...3.14.0) + ## Version 3.13.0, 2023-07-23 ### New Features (ENH) diff --git a/pypdf/_version.py b/pypdf/_version.py index 62ee17b83..382c7be00 100644 --- a/pypdf/_version.py +++ b/pypdf/_version.py @@ -1 +1 @@ -__version__ = "3.13.0" +__version__ = "3.14.0"