forked from josch/img2pdf
release version 0.3.3
This commit is contained in:
parent
e04f7c0a26
commit
8d7996709a
3 changed files with 10 additions and 2 deletions
|
@ -2,6 +2,14 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.3.3 (2019-01-07)
|
||||
------------------
|
||||
|
||||
- restore basic support for Python 2
|
||||
- also ship test.sh
|
||||
- add legal and tabloid paper formats
|
||||
- respect exif rotation tag
|
||||
|
||||
0.3.2 (2018-11-20)
|
||||
------------------
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
VERSION = "0.3.2"
|
||||
VERSION = "0.3.3"
|
||||
|
||||
INSTALL_REQUIRES = (
|
||||
'Pillow',
|
||||
|
|
|
@ -35,7 +35,7 @@ import struct
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
__version__ = "0.3.2"
|
||||
__version__ = "0.3.3"
|
||||
default_dpi = 96.0
|
||||
papersizes = {
|
||||
"letter": "8.5inx11in",
|
||||
|
|
Loading…
Reference in a new issue