release version 0.3.0

This commit is contained in:
Johannes 'josch' Schauer 2018-07-18 11:30:43 +02:00
parent 75c43de09d
commit 1aa71e3746
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1
3 changed files with 10 additions and 2 deletions

View file

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

View file

@ -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',

View file

@ -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",