Skip to content

Commit

Permalink
Release v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Fievet committed Apr 20, 2024
1 parent fec6487 commit 6f90805
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Changelog
=========

v2.5.0 (2024 Apr 20)
--------------------

* Add support for Django 5.0
* Add support for Python 3.12

.. warning::

The following changes are backward-incompatible with the previous release.

* Coerce language code on filename lookup (thanks @nerdoc)

.. note::

The default filename from django-static18n is now made upon the
language code found in ``settings.LANGUAGES``. This aligns with
Django's behavior.

Upon upgrading, re-generate and deploy your Javascript catalogs to ensure
they come with the correct language code-based names.

v2.4.0 (2023 Jul 29)
--------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
# -- Project information -----------------------------------------------------

project = "django-statici18n"
copyright = "2012-2020, Sébastien Fievet"
copyright = "2012-2024, Sébastien Fievet"
author = "Sébastien Fievet"

# The full version, including alpha/beta/rc tags
release = "2.4.0"
release = "2.5.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.4.0
current_version = 2.5.0

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="django-statici18n",
version="2.4.0",
version="2.5.0",
author="Sebastien Fievet",
author_email="zyegfryed@gmail.com",
url="http://django-statici18n.readthedocs.org/",
Expand Down
2 changes: 1 addition & 1 deletion src/statici18n/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# following PEP 386
__version__ = "2.4.0"
__version__ = "2.5.0"

import django

Expand Down

0 comments on commit 6f90805

Please sign in to comment.