From ba485854a4b055278e11b1888bed091d53ad645f Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Thu, 18 Jul 2024 12:55:00 +0200 Subject: [PATCH] Update tests --- .github/workflows/test.yml | 20 +------------------- CHANGELOG.rst | 9 ++++++++- djangocms_text_ckeditor/__init__.py | 2 +- 3 files changed, 10 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 45d3d7bb3..a3d4740ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [ 3.9, "3.10", "3.11", "3.12"] requirements-file: [ dj22_cms37.txt, dj22_cms38.txt, @@ -30,24 +30,6 @@ jobs: ubuntu-20.04, ] exclude: - - python-version: 3.7 - requirements-file: dj32_cms41.txt - - python-version: 3.7 - requirements-file: dj40_cms311.txt - - python-version: 3.7 - requirements-file: dj40_cms41.txt - - python-version: 3.7 - requirements-file: dj41_cms311.txt - - python-version: 3.7 - requirements-file: dj41_cms41.txt - - python-version: 3.7 - requirements-file: dj42_cms311.txt - - python-version: 3.7 - requirements-file: dj42_cms41.txt - - python-version: 3.7 - requirements-file: dj50_cms41.txt - - python-version: 3.8 - requirements-file: dj50_cms41.txt - python-version: 3.9 requirements-file: dj50_cms41.txt - python-version: "3.10" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5718a632b..b8979f568 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,11 +2,18 @@ Changelog ========= +5.1.6 (2024-07-18) +================== + +* fix: Allow double-clicks to propagate to CKEditor, e.g., to open the link dialog by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/676 +* fix: Let CKEditor decide on size of its panels by @fsbraun in https://github.com/django-cms/djangocms-text-ckeditor/pull/674 + + 5.1.5 (2023-11-30) ================== * fix(settings): Extend ALLOW_TOKEN_PARSERS if custom one is provided by @DmytroLitvinov in `#654 `_ -* fix: Support djangocms-picture 2.0.0 and higher in create_picture_plugin by @leture in `#660 `_ +* fix: Support djangocms-picture 2.0.0 and higher in create_picture_plugin by @leture in `#660 `_ * Remove Flash plugin in the default settings by @MacLake in `#656 `_ * fix: Allow for request-free context objects for testing purposes by @fsbraun in `#659 `_ * Update test matrix to include Django 5 by @protoroto in `#662 `_ diff --git a/djangocms_text_ckeditor/__init__.py b/djangocms_text_ckeditor/__init__.py index 9154022f5..2b27aae03 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.5' +__version__ = '5.1.6' default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'