From 3872293ed3df1f38fbeff96ef44ed2c5bf0a67f6 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Wed, 22 Jun 2022 11:56:59 +0100 Subject: [PATCH] Bump to 5.1.1 (#622) --- CHANGELOG.rst | 5 ++++- djangocms_text_ckeditor/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0eeec3729..83cfcf91a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,9 +5,12 @@ Changelog Unreleased ========== +5.1.1 (2022-06-22) +================== + * Removed inline editing toggle button from touch devices (where it is inactive anyways) and collapsed menus * Add workaround for toolbar bug in django CMS < 3.10: Reload page after change in inline editor -* Fix #578: If parent plugins to not set body css class the default from CKEDITOR_SETTINGS is used +* Fix `578 `_: If parent plugins to not set body css class the default from CKEDITOR_SETTINGS is used 5.1.0 (2022-03-24) ================== diff --git a/djangocms_text_ckeditor/__init__.py b/djangocms_text_ckeditor/__init__.py index dbbc65396..c29798c5a 100644 --- a/djangocms_text_ckeditor/__init__.py +++ b/djangocms_text_ckeditor/__init__.py @@ -16,6 +16,6 @@ 10. Publish the release when ready 11. Github actions will publish the new package to pypi """ -__version__ = '5.1.0' +__version__ = '5.1.1' default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'