diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1ee9e0..901237a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ Changelog ========= +0.19.0 (2024-07-02) +=================== + +Bugfix and cleanup release + +* Fixed broken ``SessionRefresh`` middleware +* Removed ``oidc_exempt_urls`` config model fields - these turn out not to be used and + you typically want to specify them in django settings as they are tied to the session + refresh middleware. + 0.18.1 (2024-06-18) =================== diff --git a/README.rst b/README.rst index ea12720..d2c6723 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ mozilla-django-oidc-db ====================== -:Version: 0.18.1 +:Version: 0.19.0 :Source: https://github.com/maykinmedia/mozilla-django-oidc-db :Keywords: OIDC, django, database, authentication diff --git a/docs/conf.py b/docs/conf.py index 76e1c35..ef70081 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.18.1" +release = "0.19.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 25d389f..55b6326 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mozilla-django-oidc-db" -version = "0.18.1" +version = "0.19.0" description = "A database-backed configuration for mozilla-django-oidc" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -93,7 +93,7 @@ markers = [ ] [tool.bumpversion] -current_version = "0.18.1" +current_version = "0.19.0" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},