From e7229e47b513ea956123b93b2f06e56f22d98a5f Mon Sep 17 00:00:00 2001 From: Conor Holden Date: Tue, 5 Nov 2024 12:34:15 +0100 Subject: [PATCH] :bookmark: release 0.9.0 --- CHANGELOG.rst | 15 +++++++++++++++ README.rst | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c7810a8..3c11ffd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,21 @@ Changelog ========= +0.8.1 (2024-09-26) +------------------ +**New Features** + +* Add ``SESSION_COOKIE_AGE`` configurable setting +* Add user session management admin + +..note:: + + SessionProfile admin should be added to admin index and its fixture. + +**Bugfixes/QOL** + +* fix runtime configuration for django-log-outgoing-requests + 0.8.1 (2024-09-26) ------------------ diff --git a/README.rst b/README.rst index d3e20a1..d8f1bbd 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Open API Framework ================== -:Version: 0.8.1 +:Version: 0.9.0 :Source: https://github.com/maykinmedia/open-api-framework :Keywords: metapackage, dependencies diff --git a/docs/conf.py b/docs/conf.py index be8efcd..13466b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.8.1" +release = "0.9.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 8983e67..6642a0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "open_api_framework" -version = "0.8.1" +version = "0.9.0" description = "A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -103,7 +103,7 @@ testpaths = ["tests"] DJANGO_SETTINGS_MODULE = "testapp.settings" [tool.bumpversion] -current_version = "0.8.1" +current_version = "0.9.0" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},