Skip to content

Commit

Permalink
Prepare 3.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
claudep committed Feb 6, 2024
1 parent cf0f846 commit 62105c8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
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

0 comments on commit 62105c8

Please sign in to comment.