From 50bc9c1c8d14a7a9f3eb9a9620a39a0e25ec8923 Mon Sep 17 00:00:00 2001 From: Vinit Kumar Date: Wed, 21 Jun 2023 23:16:08 +0530 Subject: [PATCH] Fix/bump version prepare changelog (#645) * fix: bump version and add changelog * feat: change the link --- CHANGELOG.rst | 6 ++++++ djangocms_text_ckeditor/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d1cc1cc88..39f31d092 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ Changelog ========= +5.1.3 (2022-06-21) +================== + +* Upgrade Ckeditor to 4.21.0 via `640 https://github.com/django-cms/djangocms-text-ckeditor/pull/640`_ + + 5.1.2 (2022-12-27) ================== diff --git a/djangocms_text_ckeditor/__init__.py b/djangocms_text_ckeditor/__init__.py index 552b2901e..eaf00d69b 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.2' +__version__ = '5.1.3' default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'