diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1fb39a2f3..f32ba5e37 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,7 +5,12 @@ Changelog Unreleased ========== -* fix: Update skin patch to avoid @media query + +5.1.0 (2022-03-24) +================== + +* Added inline editing in `#606 `_ +* fix: Update skin patch to avoid @media query in `#614 `_ 5.0.1 (2022-03-24) ================== diff --git a/djangocms_text_ckeditor/__init__.py b/djangocms_text_ckeditor/__init__.py index 368b8badd..dbbc65396 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.0.1' +__version__ = '5.1.0' default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'