Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare release 4.6.0 #689

Merged
merged 2 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.2
4.6.0
20 changes: 20 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
pywps (4.6.0) trusty; urgency=medium

* Skip support for Python 3.7
* Update validate geojson (#680).
* Sanitize test suite (#684, #683, #682, #681).
* Support Python3.10/3.11, documentation fixes, and general codebase cleanup (#677).
* Extended env variable interpolation (#675)
* Don't use deprecated distutils module (#672).
* Fixed tox.ini parameter passenv (#670).
* Improve the implementation of pywps.inout.literaltypes (#668).
* Fix tests/test_capabilities.py with correct check of request case (#665).
* Activate async test (#664).
* Move Sleep process definition (#663).
* Remove use of mutable as default value in Process.__init__ (#660).
* Better handle of crashed processes (#659).
* Change coveralls branch from master to main (#655).

-- Carsten Ehbrecht <[email protected]> Wed, 01 Nov 2023 18:00:00 +0000


pywps (4.5.2) trusty; urgency=medium

* Fix test section in README.md about pytest (#653)
Expand Down
2 changes: 1 addition & 1 deletion pywps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from lxml.builder import ElementMaker

__version__ = "4.5.2"
__version__ = "4.6.0"

LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.5.2
current_version = 4.6.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)
Expand All @@ -24,3 +24,4 @@ ignore =
W606
max-line-length = 120
exclude = tests