diff --git a/README.rst b/README.rst index 680b7bbc..ef735660 100644 --- a/README.rst +++ b/README.rst @@ -122,6 +122,13 @@ If you detect an issue, please: - If possible provide your input PDF file as well as the content of the temporary folder (using a file sharing service like Dropbox) +Requirements +------------ + +Runs on CPython 3.6, and requires external program installations of Ghostscript, Tesseract OCR, QPDF, and Leptonica. ocrmypdf is pure Python, but uses CFFI to portably generate library bindings. + +Python 3.5 is fully supported, but support will end at the end of 2017, to allow f-strings in the code base. + Press & Media ------------- diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 9a4efcc7..7b0c2bdd 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -5,6 +5,15 @@ OCRmyPDF uses `semantic versioning `_ for its command line i The OCRmyPDF package itself does not contain a public API, although it is fairly stable and breaking changes are usually timed with a major release. A future release will clearly define the stable public API. +v5.4.4 +------ + +- Support for Python 3.5 is now deprecated and will be removed at the end of 2017 +- Adding previously unlisted setup requirement, pytest-runner +- Fix issue #200, an uncommon syntax for formatting decimal numbers in a PDF would cause qpdf to issue a warning, which ocrmypdf treated as an error. Now this the warning is relayed. +- Fix an issue where intermediate PDFs would be created at version 1.3 instead of the version of the original file. It's possible but unlikely this had side effects. +- Update documentation: fix an error in the example script for Synology with Docker images, improved security guidance, advised ``pip install --user`` + v5.4.3 ------