Skip to content

Commit 7839f52

Browse files
authored
prepare release 4.5.2 (#654)
* update changes * bumpversion
1 parent e2b1bfe commit 7839f52

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.1
1+
4.5.2

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
pywps (4.5.2) trusty; urgency=medium
2+
3+
* Fix test section in README.md about pytest (#653)
4+
* Fix ComplexInput.from_json to handle data_format.encoding="base64" (#652)
5+
* Fix invalide use of encode on bytes object (#651)
6+
* Fix JSON encoding of CRS type in BoundingBox (#610)
7+
* Modernize CI using Tox, add a "[dev]" recipe, re-enable coveralls (#643)
8+
* Fix deprecated logging.warn() call (#642)
9+
10+
-- Carsten Ehbrecht <ehbrecht@dkrz.de> Wed, 13 Apr 2022 18:00:00 +0000
11+
112
pywps (4.5.1) trusty; urgency=medium
213

314
* Fix app/Process.py to cope with None mimetype (#620)

pywps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from lxml.builder import ElementMaker
1111

12-
__version__ = "4.5.1"
12+
__version__ = "4.5.2"
1313

1414
LOGGER = logging.getLogger('PYWPS')
1515
LOGGER.debug('setting core variables')

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.5.1
2+
current_version = 4.5.2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
@@ -18,7 +18,7 @@ replace = {new_version}
1818
relative_files = True
1919

2020
[flake8]
21-
ignore =
21+
ignore =
2222
F401
2323
E402
2424
W606

0 commit comments

Comments
 (0)