From ec455aa9067b9f211f271a12e27dc4631d056a5e Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Mon, 7 Aug 2023 08:30:00 +0200 Subject: [PATCH] FeinCMS v23.8.0 --- CHANGELOG.rst | 8 +++++++- feincms/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index efbf1190..74a5dc1b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,13 @@ Change log `Next version`_ ~~~~~~~~~~~~~~~ -.. _Next version: https://github.com/feincms/feincms/compare/v23.1.0...main +.. _Next version: https://github.com/feincms/feincms/compare/v23.8.0...main + + +`v23.8.0`_ (2023-08-07) +~~~~~~~~~~~~~~~~~~~~~~~ + +.. _v23.8.0: https://github.com/feincms/feincms/compare/v23.1.0...v23.8.0 - Made the filter argument of content base's ``get_queryset`` method optional. This enables easier interoperability of FeinCMS content types with feincms3 diff --git a/feincms/__init__.py b/feincms/__init__.py index dbff7b49..b3462a34 100644 --- a/feincms/__init__.py +++ b/feincms/__init__.py @@ -1,4 +1,4 @@ -VERSION = (23, 1, 0) +VERSION = (23, 8, 0) __version__ = ".".join(map(str, VERSION))