diff --git a/VERSION.txt b/VERSION.txt index f6cdf409..88f18119 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -4.7.0 +4.8.0 diff --git a/debian/changelog b/debian/changelog index deb11f03..8d2aa953 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +pywps (4.8.0) trusty; urgency=medium + + * Tests that require specific optional libraries have been marked as such (#699). + * Packaging now uses pyprojec.toml and adheres to PEPs 517 and 621 (#701). + * Now supports explicit path validation for complex inputs (#704). + * LAS/LAZ point cloud formats now better supported (#702). + * CI testing now uses explicit commit hashes for Actions and Python CI dependencies (#703). + * Project now uses Trusted Publisher for deploying packages to PyPI. (#709). + + -- Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Wed, 02 Sep 2026 21:00:00 +0000 + pywps (4.7.0) trusty; urgency=medium * Skipped support for Python 3.8 and 3.9. diff --git a/pyproject.toml b/pyproject.toml index 6d7168da..ba8a8768 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,7 +74,7 @@ s3 = ["boto3"] joblauncher = "pywps.processing.job:launcher" [tool.bumpversion] -current_version = "4.7.0" +current_version = "4.8.0" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" diff --git a/pywps/__init__.py b/pywps/__init__.py index 444fd584..35642197 100644 --- a/pywps/__init__.py +++ b/pywps/__init__.py @@ -8,7 +8,7 @@ from lxml.builder import ElementMaker -__version__ = "4.7.0" +__version__ = "4.8.0" LOGGER = logging.getLogger('PYWPS') LOGGER.debug('setting core variables')