diff --git a/VERSION.txt b/VERSION.txt index cca25a93c..1d068c6ec 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -4.4.1 +4.4.2 diff --git a/pywps/__init__.py b/pywps/__init__.py index 9df078892..2ac9b7f15 100644 --- a/pywps/__init__.py +++ b/pywps/__init__.py @@ -9,7 +9,7 @@ from lxml.builder import ElementMaker -__version__ = "4.4.1" +__version__ = "4.4.2" LOGGER = logging.getLogger('PYWPS') LOGGER.debug('setting core variables') diff --git a/setup.cfg b/setup.cfg index df4f2f37d..e04d9b916 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,16 +1,16 @@ -[flake8] -ignore=F401,E402,W606 -max-line-length=120 -exclude=tests - [bumpversion] -current_version = 4.4.1 +current_version = 4.4.2 commit = False tag = False parse = (?P\d+)\.(?P\d+).(?P\d+) -serialize = +serialize = {major}.{minor}.{patch} +[flake8] +ignore = F401,E402,W606 +max-line-length = 120 +exclude = tests + [bumpversion:file:pywps/__init__.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}"