diff --git a/CHANGELOG.rst b/CHANGELOG.rst index df40c4c..8fabec6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changes ======= +0.34.0 (2024-07-31) +------------------- + +Feature and maintenance release + +* 💥 Dropped support for Django 3.2 (end of life), only 4.2 and up are supported. +* You can now configure a health check endpoint for a service. The HTTP response + status code of this URL is displayed in the admin change page. + 0.33.0 (2024-03-29) ------------------- diff --git a/README.rst b/README.rst index b3695dd..9011fbd 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ Welcome to ZGW Consumers' documentation! ======================================== -:Version: 0.33.0 +:Version: 0.34.0 :Source: https://github.com/maykinmedia/zgw-consumers :Keywords: OpenAPI, Zaakgericht Werken, Common Ground, NLX diff --git a/docs/conf.py b/docs/conf.py index d148d8a..96a2651 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.33.0" +release = "0.34.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 83a716a..742c49c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zgw-consumers" -version = "0.33.0" +version = "0.34.0" description = "Configuration for service (OpenAPI 3 or other) consumers" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -101,7 +101,7 @@ testpaths = ["tests"] DJANGO_SETTINGS_MODULE = "testapp.settings" [tool.bumpversion] -current_version = "0.33.0" +current_version = "0.34.0" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},