File tree 4 files changed +15
-4
lines changed
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
- 4.5.1
1
+ 4.5.2
Original file line number Diff line number Diff line change
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
+
1
12
pywps (4.5.1) trusty; urgency=medium
2
13
3
14
* Fix app/Process.py to cope with None mimetype (#620)
Original file line number Diff line number Diff line change 9
9
10
10
from lxml .builder import ElementMaker
11
11
12
- __version__ = "4.5.1 "
12
+ __version__ = "4.5.2 "
13
13
14
14
LOGGER = logging .getLogger ('PYWPS' )
15
15
LOGGER .debug ('setting core variables' )
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 4.5.1
2
+ current_version = 4.5.2
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
@@ -18,7 +18,7 @@ replace = {new_version}
18
18
relative_files = True
19
19
20
20
[flake8]
21
- ignore =
21
+ ignore =
22
22
F401
23
23
E402
24
24
W606
You can’t perform that action at this time.
0 commit comments