Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit bfb7c6d

Browse files
authored
ci: Prepare release of djangocms-text-ckeditor 5.1.5 (#664)
* Update setup.py * Update __init__.py * Update CHANGELOG.rst * Update CHANGELOG.rst * Update CHANGELOG.rst
1 parent aeae78d commit bfb7c6d

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,35 @@
22
Changelog
33
=========
44

5+
5.1.5 (2023-11-30)
6+
==================
7+
8+
* fix(settings): Extend ALLOW_TOKEN_PARSERS if custom one is provided by @DmytroLitvinov in `#654 <https://github.com/django-cms/djangocms-text-ckeditor/pull/654>`_
9+
* fix: Support djangocms-picture 2.0.0 and higher in create_picture_plugin by @leture in `#660 <https://github.com/django-cms/djangocms-text-ckeditor/pull/660>`_
10+
* Remove Flash plugin in the default settings by @MacLake in `#656 <https://github.com/django-cms/djangocms-text-ckeditor/pull/656>`_
11+
* fix: Allow for request-free context objects for testing purposes by @fsbraun in `#659 <https://github.com/django-cms/djangocms-text-ckeditor/pull/659>`_
12+
* Update test matrix to include Django 5 by @protoroto in `#662 <https://github.com/django-cms/djangocms-text-ckeditor/pull/662>`_
13+
14+
515
5.1.4 (2023-10-03)
616
==================
717

8-
* fix: Issue #641 which lead to disappearing content after adding child plugins and cancelling the edit by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/652
9-
* Feature/issue 648 unable to unlink by @jrief in https://github.com/django-cms/djangocms-text-ckeditor/pull/649
10-
* fix: Remove legacy code from Django pre 1.4 by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/651
11-
* fix: test suite for Django 2.2 by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/650
18+
* fix: Issue #641 which lead to disappearing content after adding child plugins and cancelling the edit by @fsbraun in `#652 <https://github.com/django-cms/djangocms-text-ckeditor/pull/652>`_
19+
* Feature/issue 648 unable to unlink by @jrief in `#649 <https://github.com/django-cms/djangocms-text-ckeditor/pull/649>`_
20+
* fix: Remove legacy code from Django pre 1.4 by @fsbraun in `#651 <https://github.com/django-cms/djangocms-text-ckeditor/pull/651>`_
21+
* fix: test suite for Django 2.2 by @fsbraun in `#650 <https://github.com/django-cms/djangocms-text-ckeditor/pull/650>`_
1222

1323
5.1.3 (2022-06-21)
1424
==================
1525

16-
* Upgrade Ckeditor to 4.21.0 via `640 https://github.com/django-cms/djangocms-text-ckeditor/pull/640`_
26+
* Upgrade Ckeditor to 4.21.0 via `#640 <https://github.com/django-cms/djangocms-text-ckeditor/pull/640>`_
1727

1828

1929
5.1.2 (2022-12-27)
2030
==================
2131

2232
* Add suport for django CMS 4.1
23-
* Fix `468 <https://github.com/django-cms/djangocms-text-ckeditor/issues/468>`_ via `637 <https://github.com/django-cms/djangocms-text-ckeditor/pull/637>`_: Delay importing models.CMSPlugin in utils to allow adding an HTMLField to a custom user model.
33+
* Fix `#468 <https://github.com/django-cms/djangocms-text-ckeditor/issues/468>`_ via `#637 <https://github.com/django-cms/djangocms-text-ckeditor/pull/637>`_: Delay importing models.CMSPlugin in utils to allow adding an HTMLField to a custom user model.
2434

2535

2636
5.1.1 (2022-06-22)

djangocms_text_ckeditor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
10. Publish the release when ready
1717
11. Github actions will publish the new package to pypi
1818
"""
19-
__version__ = '5.1.4'
19+
__version__ = '5.1.5'
2020

2121
default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@
2727
'Programming Language :: Python :: 3.9',
2828
'Programming Language :: Python :: 3.10',
2929
'Programming Language :: Python :: 3.11',
30+
'Programming Language :: Python :: 3.12',
3031
'Framework :: Django',
3132
'Framework :: Django :: 2.2',
3233
'Framework :: Django :: 3.1',
3334
'Framework :: Django :: 3.2',
3435
'Framework :: Django :: 4.0',
3536
'Framework :: Django :: 4.1',
37+
'Framework :: Django :: 4.2',
38+
'Framework :: Django :: 5.0',
3639
'Framework :: Django CMS',
3740
'Framework :: Django CMS :: 3.6',
3841
'Framework :: Django CMS :: 3.7',

0 commit comments

Comments
 (0)