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'