Skip to content

Commit 04f734b

Browse files
authored
Merge pull request #697 from geopython/prepare-release-4.7.0
Prepare release 4.7.0
2 parents d4d5574 + 6ffe395 commit 04f734b

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.6.0
1+
4.7.0

debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
pywps (4.7.0) trusty; urgency=medium
2+
3+
* Skipped support for Python 3.8 and 3.9.
4+
* Added support for Python 3.12 and 3.13.
5+
* Security upgrade of numpy (#695) and urllib (#693).
6+
* Added conda support (#696).
7+
* Fixed linting (#694).
8+
* Reconfigure CI and documentation (#692).
9+
* Improve the content of default-config.cfg (#691).
10+
* Uniform tab/spaces in WPS templates (#690).
11+
12+
-- Carsten Ehbrecht <[email protected]> Mon, 15 Dec 2025 18:00:00 +0000
13+
114
pywps (4.6.0) trusty; urgency=medium
215

316
* Skip support for Python 3.7

pywps/__init__.py

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

99
from lxml.builder import ElementMaker
1010

11-
__version__ = "4.6.0"
11+
__version__ = "4.7.0"
1212

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

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.6.0
2+
current_version = 4.7.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
@@ -16,5 +16,3 @@ replace = {new_version}
1616

1717
[coverage:run]
1818
relative_files = True
19-
20-

0 commit comments

Comments
 (0)