release version 0.4.0

pull/110/head 0.4.0
parent cc79581e2c
commit 692b54ac67
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -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)
------------------

@ -1,7 +1,7 @@
import sys
from setuptools import setup
VERSION = "0.3.6"
VERSION = "0.4.0"
INSTALL_REQUIRES = (
"Pillow",

@ -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",

Loading…
Cancel
Save