diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b65ee5..7421fe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ #### Improvements +- Confirm Django 5.2 support. ([#730](https://github.com/jazzband/django-auditlog/pull/730)) + #### Fixes ## 3.2.0 (2025-06-26) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index b6b197a..2a2c3c2 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -12,9 +12,9 @@ The repository can be found at https://github.com/jazzband/django-auditlog/. **Requirements** - Python 3.9 or higher -- Django 4.2, 5.0 and 5.1 +- Django 4.2, 5.0, 5.1, and 5.2 -Auditlog is currently tested with Python 3.9+ and Django 4.2, 5.0 and 5.1. The latest test report can be found +Auditlog is currently tested with Python 3.9+ and Django 4.2, 5.0, 5.1, and 5.2. The latest test report can be found at https://github.com/jazzband/django-auditlog/actions. Adding Auditlog to your Django application diff --git a/setup.py b/setup.py index 8bf90ed..f6bd787 100644 --- a/setup.py +++ b/setup.py @@ -41,6 +41,7 @@ setup( "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "Framework :: Django :: 5.1", + "Framework :: Django :: 5.2", "License :: OSI Approved :: MIT License", ], ) diff --git a/tox.ini b/tox.ini index cbcb695..d9d9343 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = {py39,py310,py311}-django42 {py310,py311,py312}-django50 {py310,py311,py312,py313}-django51 + {py310,py311,py312,py313}-django52 {py312,py313}-djangomain py39-docs py39-lint @@ -19,6 +20,7 @@ deps = django42: Django>=4.2,<4.3 django50: Django>=5.0,<5.1 django51: Django>=5.1,<5.2 + django52: Django>=5.2,<5.3 djangomain: https://github.com/django/django/archive/main.tar.gz # Test requirements coverage