diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9893a6ec..84aef748 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,10 +4,16 @@ Changelog This document describes changes between each past release. -3.2.0 (unreleased) +3.2.0 (2020-12-10) ================== -- Nothing changed yet. +- Remove support for universal builds +- Add compatibility of django-filebrowser with tinymce 5 +- Load the CHANGELOG in the documentation front page +- Fix en_US language loading +- Speed up tests by removing the loading of a database +- Add verbosity option to tests +- Assume TinyMCE files are utf-8 encoded 3.1.0 (2020-09-29) diff --git a/README.rst b/README.rst index 34efd1a0..f3f802c2 100644 --- a/README.rst +++ b/README.rst @@ -65,7 +65,8 @@ In your code: Releases ======== -Latest release is 3.1.0. It supports Python 3.6+ with Django 2.2 and 3.0 +Latest release is 3.2.0. It supports Python 3.6+ with Django 2.2 and 3.0 +Using TinyMCE 5.5.0. Previous releases can be found on github, but they are no longer maintained. diff --git a/setup.py b/setup.py index 8ee5f704..56165251 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read_file(filename): setup( name="django-tinymce", - version="3.2.0.dev0", + version="3.2.0", packages=find_packages(), include_package_data=True, author="Aljosa Mohorovic",