Skip to content

Commit

Permalink
v4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed Mar 31, 2021
1 parent 105cba0 commit b9fca6e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.1
4.4.2
2 changes: 1 addition & 1 deletion pywps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
14 changes: 7 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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<major>\d+)\.(?P<minor>\d+).(?P<patch>\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}"
Expand Down

0 comments on commit b9fca6e

Please sign in to comment.