Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jul 18, 2024
1 parent 7b59346 commit ba48585
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 21 deletions.
20 changes: 1 addition & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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"
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/django-cms/djangocms-text-ckeditor/pull/654>`_
* 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>`_
* 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>`_
* Remove Flash plugin in the default settings by @MacLake in `#656 <https://github.com/django-cms/djangocms-text-ckeditor/pull/656>`_
* fix: Allow for request-free context objects for testing purposes by @fsbraun in `#659 <https://github.com/django-cms/djangocms-text-ckeditor/pull/659>`_
* Update test matrix to include Django 5 by @protoroto in `#662 <https://github.com/django-cms/djangocms-text-ckeditor/pull/662>`_
Expand Down
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.5'
__version__ = '5.1.6'

default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'

0 comments on commit ba48585

Please sign in to comment.