diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 56733505..3bbcddf8 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -14,6 +14,13 @@ Note that it is licensed under GPLv3, so scripts that ``import ocrmypdf`` and ar replace: `#$1 `_ +v8.0.1 +------ + +- Fixed an exception when parsing PDFs that are missing a required field. `#325 `_ + +- pikepdf 1.0.5 is now required, to address some other PDF parsing issues. + v8.0.0 ------ diff --git a/setup.py b/setup.py index 57797b00..37e821f2 100644 --- a/setup.py +++ b/setup.py @@ -251,7 +251,7 @@ setup( 'cffi >= 1.9.1', # must be a setup and install requirement 'img2pdf >= 0.3.0, < 0.4', # pure Python, so track HEAD closely 'pdfminer.six == 20181108 ; sys_platform != "darwin"', - 'pikepdf >= 1.0.2, < 2', + 'pikepdf >= 1.0.5, < 2', 'Pillow >= 4.0.0, != 5.1.0 ; sys_platform == "darwin"', # Pillow < 4 has BytesIO/TIFF bug w/img2pdf 0.2.3 # block 5.1.0, broken wheels