Skip to content

Commit

Permalink
Release v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Fievet committed Nov 28, 2024
1 parent 873c673 commit e698d27
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Supported Django Versions

``django-statici18n`` works with all the Django versions officially
supported by the Django project. At this time of writing, these are the
3.2 (LTS), 4.1, 4.2 series.
4.2 (LTS), 5.0 and 5.1 series.

Installation
------------
Expand Down
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

v2.6.0 (@024 Nov 28)
--------------------

* Add support for Django 5.1
* Drop support for Django 3.2
* Drop support for Django 4.1
* Use Python 3.12 as default Python version
* Fix inconsistency with locale when compiling catalogs (thanks @chnmasta05)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Sébastien Fievet"

# The full version, including alpha/beta/rc tags
release = "2.5.0"
release = "2.6.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.5.0
current_version = 2.6.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.5.0",
version="2.6.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.5.0"
__version__ = "2.6.0"

import django

Expand Down

0 comments on commit e698d27

Please sign in to comment.