forked from josch/img2pdf
release version 0.3.1
This commit is contained in:
parent
002c9c4466
commit
a9f4c9b665
3 changed files with 8 additions and 2 deletions
|
@ -2,6 +2,12 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.3.1 (2018-08-04)
|
||||
------------------
|
||||
|
||||
- Directly copy data from CCITT Group 4 encoded TIFF images into the PDF
|
||||
container without re-encoding
|
||||
|
||||
0.3.0 (2018-06-18)
|
||||
------------------
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
VERSION = "0.3.0"
|
||||
VERSION = "0.3.1"
|
||||
|
||||
INSTALL_REQUIRES = (
|
||||
'Pillow',
|
||||
|
|
|
@ -32,7 +32,7 @@ import struct
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
__version__ = "0.3.0"
|
||||
__version__ = "0.3.1"
|
||||
default_dpi = 96.0
|
||||
papersizes = {
|
||||
"letter": "8.5inx11in",
|
||||
|
|
Loading…
Reference in a new issue