diff --git a/CHANGELOG.md b/CHANGELOG.md index d3558cf83..88cb01421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## Version 3.6.0, 2023-03-18 + +### New Features (ENH) +- Extend PdfWriter.append() to PageObjects (#1704) +- Support qualified names in update_page_form_field_values (#1695) + +### Robustness (ROB) +- Tolerate streams without length field (#1717) +- Accept DictionaryObject in /D of NamedDestination (#1720) +- Widths def in cmap calls IndirectObject (#1719) + +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.5.2...3.6.0) + + ## Version 3.5.2, 2023-03-12 ⚠️ We discovered that compress_content_stream has to be applied to a page of diff --git a/pypdf/_version.py b/pypdf/_version.py index dae42b1bd..85197cb4a 100644 --- a/pypdf/_version.py +++ b/pypdf/_version.py @@ -1 +1 @@ -__version__ = "3.5.2" +__version__ = "3.6.0"