We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148e45f commit 81bcd7fCopy full SHA for 81bcd7f
CHANGES.rst
@@ -1,7 +1,15 @@
1
+Version 3.1 (2024-02-05)
2
+------------------------
3
+
4
+* Fixed Django 4 compatibility issues.
5
+* Fixed Python 3 compatibility issues in ``{% get_entries %}`` / ``query_entries()``.
6
+* Fixed translating category view for ``{% get_translated_url %}`` usage.
7
8
9
Version 3.0.2 (2022-01-09)
10
--------------------------
11
-* Fixed listing for for ``{% get_translated_url %}`` usage.
12
+* Fixed listing for ``{% get_translated_url %}`` usage.
13
14
15
Version 3.0.1 (2022-01-09)
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:
setup.py
@@ -75,13 +75,16 @@ def find_version(*parts):
75
"License :: OSI Approved :: Apache Software License",
76
"Operating System :: OS Independent",
77
"Programming Language :: Python",
78
- "Programming Language :: Python :: 3.6",
79
- "Programming Language :: Python :: 3.7",
80
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
81
"Framework :: Django",
82
"Framework :: Django :: 2.2",
83
"Framework :: Django :: 3.1",
84
"Framework :: Django :: 3.2",
85
+ "Framework :: Django :: 4.0",
86
+ "Framework :: Django :: 4.1",
87
+ "Framework :: Django :: 4.2",
88
"Topic :: Internet :: WWW/HTTP",
89
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
90
"Topic :: Software Development :: Libraries :: Application Frameworks",
0 commit comments