Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 3.7.0 release #453

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down Expand Up @@ -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 = '''
/(
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading