Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

5.1.7 (2025-03-21)
==================

* fix: Inline editing compatibility with django CMS 5 by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/682
* docs: Add link to deprecation announcement to readme by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/681

5.1.6 (2024-07-18)
==================

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ django CMS Text CKEditor

.. warning::

This package will be deprecated on March 31, 2025 and not receive any updates thereafter.
See the `deprecation announcement <https://www.django-cms.org/en/blog/2024/12/13/deprecation-announcement-djangocms-text-ckeditor-to-be-replaced-by-djangocms-text-in-q1-2025/>`_.
This package is deprecated and does not receive any updates.
See the `deprecation announcement <https://www.django-cms.org/en/blog/2024/12/13/deprecation-announcement-djangocms-text-ckeditor-to-be-replaced-by-djangocms-text-in-q1-2025/>`_.
Use `djangocms CMS Text <https://github.com/django-cms/djangocms-text>`_ as an alternative.


Expand Down Expand Up @@ -525,5 +525,5 @@ You can run tests by executing::
:target: https://www.djangoproject.com/
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-3.7%2B-blue.svg
:target: https://www.django-cms.org/
.. |djangocms4| image:: https://img.shields.io/badge/django%20CMS-4-blue.svg
.. |djangocms4| image:: https://img.shields.io/badge/django%20CMS-4%2B-blue.svg
:target: https://www.django-cms.org/
2 changes: 1 addition & 1 deletion djangocms_text_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
10. Publish the release when ready
11. Github actions will publish the new package to pypi
"""
__version__ = '5.1.6'
__version__ = '5.1.7'

default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'
Loading