diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3df3d2c..bd3527b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: toxenv: [ django42-celery53-drflatest, + django52-celery53-drflatest, quality, docs, pii_check, diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2dd70ee..6ec47dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,12 @@ Change Log Unreleased ---------- +[4.1.0] - 2025-04-24 +~~~~~~~~~~~~~~~~~~~~ + +* Added django52 support. + + [3.2.0] - 2023-07-31 ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 8751158..e19ef78 100644 --- a/setup.py +++ b/setup.py @@ -85,6 +85,7 @@ def is_requirement(line): 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Framework :: Django :: 4.2', + 'Framework :: Django :: 5.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', diff --git a/super_csv/__init__.py b/super_csv/__init__.py index 7107531..cdf19a9 100644 --- a/super_csv/__init__.py +++ b/super_csv/__init__.py @@ -2,4 +2,4 @@ CSV Processor. """ -__version__ = '4.0.1' +__version__ = '4.1.0' diff --git a/tox.ini b/tox.ini index 1ea8d91..3e5d09a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,10 @@ [tox] -envlist = py{311,312}-django{42}-celery{50}-drf{latest} +envlist = py{311,312}-django{42,52}-celery{50}-drf{latest} [testenv] deps = django42: Django>=4.2,<4.3 + django52: Django>=5.2,<5.3 drflatest: djangorestframework celery53: -r{toxinidir}/requirements/celery53.txt -r{toxinidir}/requirements/test.txt