Skip to content

Commit

Permalink
prepare release 4.5.2 (#654)
Browse files Browse the repository at this point in the history
* update changes

* bumpversion
  • Loading branch information
cehbrecht authored Apr 13, 2022
1 parent e2b1bfe commit 7839f52
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.1
4.5.2
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
pywps (4.5.2) trusty; urgency=medium

* Fix test section in README.md about pytest (#653)
* Fix ComplexInput.from_json to handle data_format.encoding="base64" (#652)
* Fix invalide use of encode on bytes object (#651)
* Fix JSON encoding of CRS type in BoundingBox (#610)
* Modernize CI using Tox, add a "[dev]" recipe, re-enable coveralls (#643)
* Fix deprecated logging.warn() call (#642)

-- Carsten Ehbrecht <[email protected]> Wed, 13 Apr 2022 18:00:00 +0000

pywps (4.5.1) trusty; urgency=medium

* Fix app/Process.py to cope with None mimetype (#620)
Expand Down
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.5.1"
__version__ = "4.5.2"

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.5.1
current_version = 4.5.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
Expand All @@ -18,7 +18,7 @@ replace = {new_version}
relative_files = True

[flake8]
ignore =
ignore =
F401
E402
W606
Expand Down

0 comments on commit 7839f52

Please sign in to comment.