diff --git a/CHANGES.rst b/CHANGES.rst index 55d8a51..4f5bee3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------ diff --git a/setup.py b/setup.py index 56e9c4c..cc56301 100644 --- a/setup.py +++ b/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', diff --git a/src/img2pdf.py b/src/img2pdf.py index 11a27ef..7c1978e 100755 --- a/src/img2pdf.py +++ b/src/img2pdf.py @@ -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",