Skip to content

Commit 81bcd7f

Browse files
committed
Bump to v3.1
1 parent 148e45f commit 81bcd7f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGES.rst

+9-1
Original file line numberDiff line numberDiff line change
@@ -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+
19
Version 3.0.2 (2022-01-09)
210
--------------------------
311

4-
* Fixed listing for for ``{% get_translated_url %}`` usage.
12+
* Fixed listing for ``{% get_translated_url %}`` usage.
513

614

715
Version 3.0.1 (2022-01-09)

fluent_blogs/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# following PEP 440
2-
__version__ = "3.0.2"
2+
__version__ = "3.1"
33

44
# Fix for internal messy imports.
55
# When base_models is imported before models/__init__.py runs, there is a circular import:

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,16 @@ def find_version(*parts):
7575
"License :: OSI Approved :: Apache Software License",
7676
"Operating System :: OS Independent",
7777
"Programming Language :: Python",
78-
"Programming Language :: Python :: 3.6",
79-
"Programming Language :: Python :: 3.7",
8078
"Programming Language :: Python :: 3.8",
79+
"Programming Language :: Python :: 3.9",
80+
"Programming Language :: Python :: 3.10",
8181
"Framework :: Django",
8282
"Framework :: Django :: 2.2",
8383
"Framework :: Django :: 3.1",
8484
"Framework :: Django :: 3.2",
85+
"Framework :: Django :: 4.0",
86+
"Framework :: Django :: 4.1",
87+
"Framework :: Django :: 4.2",
8588
"Topic :: Internet :: WWW/HTTP",
8689
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
8790
"Topic :: Software Development :: Libraries :: Application Frameworks",

0 commit comments

Comments
 (0)