forked from josch/img2pdf
release version 0.4.0
This commit is contained in:
parent
cc79581e2c
commit
692b54ac67
3 changed files with 16 additions and 2 deletions
14
CHANGES.rst
14
CHANGES.rst
|
@ -2,6 +2,20 @@
|
||||||
CHANGES
|
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)
|
0.3.6 (2020-04-30)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
VERSION = "0.3.6"
|
VERSION = "0.4.0"
|
||||||
|
|
||||||
INSTALL_REQUIRES = (
|
INSTALL_REQUIRES = (
|
||||||
"Pillow",
|
"Pillow",
|
||||||
|
|
|
@ -47,7 +47,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
have_pikepdf = False
|
have_pikepdf = False
|
||||||
|
|
||||||
__version__ = "0.3.6"
|
__version__ = "0.4.0"
|
||||||
default_dpi = 96.0
|
default_dpi = 96.0
|
||||||
papersizes = {
|
papersizes = {
|
||||||
"letter": "8.5inx11in",
|
"letter": "8.5inx11in",
|
||||||
|
|
Loading…
Reference in a new issue