diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0f43ba57..c6db65ef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,7 +3,11 @@ Changelog This document describes changes between each past release. +3.5.0 (2022-08-27) +================== + - Support new non-jQuery formset:added event triggered on Django 4.1 +- Replace an obsolete call to tinyMCE.editors (#391) - Confirm support for Django 4.0 and 4.1 - Drop support for Django 3.0, 3.1 and Python 3.6 - Add Python 3.10 support diff --git a/README.rst b/README.rst index ff605ed9..3b07d9a1 100644 --- a/README.rst +++ b/README.rst @@ -71,7 +71,7 @@ In your code: Releases ======== -Latest release is 3.4.0. It supports Python 3.7+ and Django 2.2 to 4.1. +Latest release is 3.5.0. It supports Python 3.7+ and Django 2.2 to 4.1. Using TinyMCE 5.10.1. diff --git a/setup.py b/setup.py index 7282c7f6..bab2f093 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read_file(filename): setup( name="django-tinymce", - version="3.4.0", + version="3.5.0", packages=find_packages(), include_package_data=True, author="Aljosa Mohorovic",