release version 0.3.1

pull/110/head 0.3.1
parent 002c9c4466
commit a9f4c9b665
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

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

@ -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…
Cancel
Save