diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2a0f2055..00a564f1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,12 +3,17 @@ Changelog This document describes changes between each past release. -Unreleased -========== +3.7.0 (2024-02-06) +================== - Drop support for Django 2.2, 4.0, and 4.1. - Add support for Django 4.2 and 5.0. - Drop support for Python 3.7 and add support for Python 3.11 and 3.12. +- New ``pyproject.toml`` replaces the legacy ``setup.py`` project config. +- Use staticfiles storage API to find tinymce location (#420). It was already + done in 3.6.0, but had to be reverted in 3.6.1 (see #430). +- Fixed selector usage for elements with ``__prefix__`` (typically inlines). +- ``TINYMCE_JS_ROOT`` setting has been removed. 3.6.1 (2023-03-20) ================== diff --git a/README.rst b/README.rst index efda0ebd..eba2660d 100644 --- a/README.rst +++ b/README.rst @@ -71,7 +71,7 @@ In your code: Releases ======== -Latest release is 3.6.1. It supports Python 3.8+ and Django 3.2 to 5.0. +Latest release is 3.7.0. It supports Python 3.8+ and Django 3.2 to 5.0. Using TinyMCE 5.10.7. diff --git a/pyproject.toml b/pyproject.toml index 88e9ee23..8a8ffd44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-tinymce" -version = "3.6.1" +version = "3.7.0" description = """ A Django application that contains a widget to render a form field as a TinyMCE editor.""" @@ -51,7 +51,7 @@ Changelog = "https://github.com/jazzband/django-tinymce/blob/master/CHANGELOG.rs [tool.black] line-length = 99 skip-numeric-underscore-normalization = true -target-version = ['py37'] +target-version = ['py38'] include = '\.pyi?$' exclude = ''' /( diff --git a/tox.ini b/tox.ini index f44c2b6c..683cf0dc 100644 --- a/tox.ini +++ b/tox.ini @@ -8,8 +8,6 @@ envlist = [testenv] deps = dj32: Django>=3.2,<4.0 - dj40: Django>=4.0,<4.1 - dj41: Django>=4.1,<4.2 dj42: Django>=4.2,<5.0 dj50: Django>=5.0,<5.1 djmain: https://github.com/django/django/archive/main.tar.gz