From 7b4bbf068c91e2805fb6b57b88c8178ea3818654 Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Mon, 13 Nov 2023 21:08:31 +0100 Subject: [PATCH] Bump to v3.1 --- CHANGES.rst | 10 +++++++++- fluent_blogs/__init__.py | 2 +- setup.py | 7 +++++-- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 25ebe01..b0fd8e3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,15 @@ +Version 3.1 (2024-02-05) +------------------------ + +* Fixed Django 4 compatibility issues. +* Fixed Python 3 compatibility issues in ``{% get_entries %}`` / ``query_entries()``. +* Fixed translating category view for ``{% get_translated_url %}`` usage. + + Version 3.0.2 (2022-01-09) -------------------------- -* Fixed listing for for ``{% get_translated_url %}`` usage. +* Fixed listing for ``{% get_translated_url %}`` usage. Version 3.0.1 (2022-01-09) diff --git a/fluent_blogs/__init__.py b/fluent_blogs/__init__.py index 7362550..c3124fd 100644 --- a/fluent_blogs/__init__.py +++ b/fluent_blogs/__init__.py @@ -1,5 +1,5 @@ # following PEP 440 -__version__ = "3.0.2" +__version__ = "3.1" # Fix for internal messy imports. # When base_models is imported before models/__init__.py runs, there is a circular import: diff --git a/setup.py b/setup.py index b5aa774..b1bfcb6 100755 --- a/setup.py +++ b/setup.py @@ -75,13 +75,16 @@ def find_version(*parts): "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Framework :: Django", "Framework :: Django :: 2.2", "Framework :: Django :: 3.1", "Framework :: Django :: 3.2", + "Framework :: Django :: 4.0", + "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Application Frameworks",