From 692b54ac6782c17514a5cd4968be1d095aa053f9 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Fri, 7 Aug 2020 08:05:27 +0200 Subject: [PATCH] release version 0.4.0 --- CHANGES.rst | 14 ++++++++++++++ setup.py | 2 +- src/img2pdf.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 870c6f9..4b325bb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,20 @@ CHANGES ======= +0.4.0 (2020-08-07) +------------------ + + - replace --without-pdfrw by --engine=internal or --engine=pdfrw + - add pikepdf as additional rendering engine and add --engine=pikepdf + - support for creating PDF/A-1b compliant PDF using the --pdfa option + (this also requires the presence of an ICC profile somewhere on the system) + - support for images with embedded ICC profile as input + - rewrite tests + * use pytest via tox + * use pikepdf instead of pdfrw + * use imagemagick json output instead of identify -verbose + - format all code with black + 0.3.6 (2020-04-30) ------------------ diff --git a/setup.py b/setup.py index 92a823a..8b2c01f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import sys from setuptools import setup -VERSION = "0.3.6" +VERSION = "0.4.0" INSTALL_REQUIRES = ( "Pillow", diff --git a/src/img2pdf.py b/src/img2pdf.py index fd1c8b0..78d7639 100755 --- a/src/img2pdf.py +++ b/src/img2pdf.py @@ -47,7 +47,7 @@ try: except ImportError: have_pikepdf = False -__version__ = "0.3.6" +__version__ = "0.4.0" default_dpi = 96.0 papersizes = { "letter": "8.5inx11in",