Skip to content

Commit 9bc76a6

Browse files
authored
chore: Prepare release 0.8.7 (#96)
1 parent d65789b commit 9bc76a6

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

CHANGELOG.rst

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

5+
0.8.7 (30-05-2025)
6+
==================
7+
* fix: table icons of inline ckeditor respect dark mode by @PeterW-LWL in https://github.com/django-cms/djangocms-text/pull/92
8+
* feat: Add `CKEDITOR_BASEPATH` configuration for CKEditor 4 by @fsbraun in https://github.com/django-cms/djangocms-text/pull/94
9+
10+
**New Contributor**
11+
12+
@PeterW-LWL made their first contribution in https://github.com/django-cms/djangocms-text/pull/92
13+
514
0.8.6 (23-05-2025)
615
==================
716

@@ -48,6 +57,7 @@ Changelog
4857
* fix: Leaner event management by @fsbraun
4958

5059
**New Contributors**
60+
5161
* @DmytroLitvinov made their first contribution in https://github.com/django-cms/djangocms-text/pull/67
5262
* @earthcomfy made their first contribution in https://github.com/django-cms/djangocms-text/pull/61
5363

@@ -175,8 +185,9 @@ Changelog
175185
* fix: Prepare css for drag / swipe in rtl mode by @fsbraun in https://github.com/django-cms/djangocms-text/pull/9
176186
* fix: Add bundles to build
177187

178-
**New Contributors**
179-
* @MacLake made their first contribution in https://github.com/django-cms/djangocms-text/pull/11
188+
**New Contributor**
189+
190+
@MacLake made their first contribution in https://github.com/django-cms/djangocms-text/pull/11
180191

181192
0.1.0 (First alpha)
182193
===================

djangocms_text/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
Release logic:
55
1. Increase version number (change __version__ below).
66
2. Assure that all changes have been documented in CHANGELOG.rst.
7-
3. In setup.py check that
8-
- versions from all third party packages are pinned in ``REQUIREMENTS``.
9-
- the list of ``CLASSIFIERS`` is up to date.
10-
4. git add djangocms_text_ckeditor/__init__.py CHANGELOG.rst setup.py
11-
5. git commit -m 'Bump to {new version}'
7+
3. In ``pyproject.toml`` check that
8+
- versions from all third party packages are pinned in ``requirements``.
9+
- the list of ``classifiers`` is up to date.
10+
4. git add djangocms_text/__init__.py CHANGELOG.rst setup.py
11+
5. git commit -m 'chore: Bump to {new version}'
1212
6. git push
1313
7. Assure that all tests pass on https://github.com/django-cms/djangocms-text-ckeditor/actions
1414
8. Create a new release on https://github.com/django-cms/djangocms-text-ckeditor/releases/new
1515
9. Publish the release when ready
1616
10. Github actions will publish the new package to pypi
1717
"""
1818

19-
__version__ = "0.8.6"
19+
__version__ = "0.8.7"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Framework :: Django :: 4.2",
2323
"Framework :: Django :: 5.0",
2424
"Framework :: Django :: 5.1",
25+
"Framework :: Django :: 5.2",
2526
"Framework :: Django CMS",
2627
"Framework :: Django CMS :: 3.11",
2728
"Framework :: Django CMS :: 4.0",

0 commit comments

Comments
 (0)