From d273d5f877354d4f77e744a913dab2a7ac0ce5d2 Mon Sep 17 00:00:00 2001 From: Pingu Carsti Date: Tue, 10 Aug 2021 16:35:26 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.4.4=20=E2=86=92=204.4.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.txt | 2 +- debian/changelog | 6 ++++++ pywps/__init__.py | 2 +- setup.cfg | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index cbe06cdbf..fa1ba0458 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -4.4.4 +4.4.5 diff --git a/debian/changelog b/debian/changelog index 94e6ce7e4..6d0104fc2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pywps (4.4.5) trusty; urgency=medium + + * Fixed lxml default parser (#616). + + -- Carsten Ehbrecht Tue, 10 Aug 2021 18:00:00 +0000 + pywps (4.4.4) trusty; urgency=medium * Fixed sphinx build (#608) diff --git a/pywps/__init__.py b/pywps/__init__.py index 0a2e4cade..021fb9541 100644 --- a/pywps/__init__.py +++ b/pywps/__init__.py @@ -9,7 +9,7 @@ from lxml.builder import ElementMaker -__version__ = "4.4.4" +__version__ = "4.4.5" LOGGER = logging.getLogger('PYWPS') LOGGER.debug('setting core variables') diff --git a/setup.cfg b/setup.cfg index 44351af3b..3271655c0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 4.4.4 +current_version = 4.4.5 commit = False tag = False parse = (?P\d+)\.(?P\d+).(?P\d+) -serialize = +serialize = {major}.{minor}.{patch} [flake8]