release version 0.3.0

pull/110/head 0.3.0
parent 75c43de09d
commit 1aa71e3746
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -2,6 +2,14 @@
CHANGES
=======
0.3.0
-----
- Store non-jpeg images using PNG compression
- Support arbitrarily large pages via PDF /UserUnit field
- Disallow input with alpha channel as it cannot be preserved
- Add option --pillow-limit-break to support very large input
0.2.4
-----

@ -3,7 +3,7 @@ from setuptools import setup
PY3 = sys.version_info[0] >= 3
VERSION = "0.2.4"
VERSION = "0.3.0"
INSTALL_REQUIRES = (
'Pillow',

@ -32,7 +32,7 @@ import struct
PY3 = sys.version_info[0] >= 3
__version__ = "0.2.4"
__version__ = "0.3.0"
default_dpi = 96.0
papersizes = {
"letter": "8.5inx11in",

Loading…
Cancel
Save