diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 23d0b65..6b36775 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ Changelog ========= +0.19.2 (2025-01-09) +=================== + +Very small patch release. + +* The default value for DIGID_MOCK_IDP_VALIDATE_CALLBACK_URLS is no longer equal to + settings.DEBUG but to its inverse. + 0.19.1 (2025-01-08) =================== diff --git a/README.rst b/README.rst index 5cea39e..52ff1a5 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ django-digid-eherkenning ======================== -:Version: 0.19.1 +:Version: 0.19.2 :Source: https://github.com/maykinmedia/django-digid-eherkenning :Keywords: django, authentication, digid, eherkenning, eidas, dutch, nl, netherlands diff --git a/docs/conf.py b/docs/conf.py index 3a5f1be..3575361 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.19.1" +release = "0.19.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 8c612aa..29ca84c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-digid-eherkenning" -version = "0.19.1" +version = "0.19.2" description = "A Django app for DigiD/eHerkenning authentication flows" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -96,7 +96,7 @@ markers = [ ] [tool.bumpversion] -current_version = "0.19.1" +current_version = "0.19.2" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},