Skip to content

Commit

Permalink
Bump to v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Feb 5, 2024
1 parent 8488090 commit 7b4bbf0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion fluent_blogs/__init__.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7b4bbf0

Please sign in to comment.