diff --git a/CHANGES.rst b/CHANGES.rst index e7704b7..870c6f9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,11 @@ CHANGES ======= +0.3.6 (2020-04-30) +------------------ + + - fix tests for Fedora on arm64 + 0.3.5 (2020-04-28) ------------------ diff --git a/setup.py b/setup.py index cf63582..9abe2e9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import sys from setuptools import setup -VERSION = "0.3.5" +VERSION = "0.3.6" INSTALL_REQUIRES = ( 'Pillow', diff --git a/src/img2pdf.py b/src/img2pdf.py index ef438b5..4432fe7 100755 --- a/src/img2pdf.py +++ b/src/img2pdf.py @@ -42,7 +42,7 @@ try: except ImportError: pass -__version__ = "0.3.5" +__version__ = "0.3.6" default_dpi = 96.0 papersizes = { "letter": "8.5inx11in",