From 7b424eb78f1eb1497c694c73f8763e645f005cca Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Wed, 10 Jun 2020 00:46:11 +0200 Subject: [PATCH] release version 0.3 --- CHANGELOG.rst | 17 +++++++++++++++-- plakativ.py | 2 +- setup.py | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0303fcd..263078a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,22 @@ +======= +CHANGES +======= + +0.3 (2020-06-10) +---------------- + + - add freedesktop.org, appstream integration and icon + - add command line interface + - automatically flip poster dimensions for maximum output size + - use img2pdf to support raster images as input + - support pymupdf before version 1.14.5 + 0.2 (2020-03-03) ---------------- -- Add complex layout strategy + - Add complex layout strategy 0.1 (2019-07-04) ---------------- -- Initial PyPI release + - Initial PyPI release diff --git a/plakativ.py b/plakativ.py index 299816d..04c8076 100755 --- a/plakativ.py +++ b/plakativ.py @@ -44,7 +44,7 @@ except ImportError: tkinter.Menubutton = dummy tkinter.LabelFrame = dummy -VERSION = "0.2" +VERSION = "0.3" PAGE_SIZES = OrderedDict( [ diff --git a/setup.py b/setup.py index ba4171f..ffa26cc 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -VERSION = "0.2" +VERSION = "0.3" setup( name="plakativ",