Skip to content

Commit 23c8c5b

Browse files
authored
chore: Prepare release 0.9.3 (#120)
1 parent 070dc3b commit 23c8c5b

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog
33
=========
44

5+
0.9.3 (22-08-2025)
6+
==================
7+
8+
* fix: Fixed issues for non-CMS installations and added test coverage for non-CMS installations by @Grosskopf in https://github.com/django-cms/djangocms-text/pull/119
9+
* fix: Respect plugin language for link field by @fsbraun in https://github.com/django-cms/djangocms-text/pull/113
10+
11+
@Grosskopf made their first contribution in https://github.com/django-cms/djangocms-text/pull/119
12+
513
0.9.2 (10-08-2025)
614
==================
715

@@ -12,7 +20,6 @@ Changelog
1220

1321
@mrbazzan made their first contribution in https://github.com/django-cms/djangocms-text/pull/108
1422

15-
1623
0.9.1 (12-06-2025)
1724
==================
1825

djangocms_text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
10. Github actions will publish the new package to pypi
1717
"""
1818

19-
__version__ = "0.9.2"
19+
__version__ = "0.9.3"

djangocms_text/static/djangocms_text/css/cms.text.css

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@
3333
height: 24rem;
3434
min-height: 16rem;
3535
min-width: 16rem;
36-
.cms-modal-foot {
37-
margin-inline-end: 1rem;
38-
.cms-modal-buttons {
39-
padding-inline-end: 10px;
40-
}
41-
}
4236
.cms-modal-body iframe {
4337
width: 100%;
4438
height: 100%;

djangocms_text/widgets.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,7 @@ def get_global_settings(self, language):
232232
}
233233

234234
return {
235-
"add_plugin_url": (
236-
admin_reverse(cms_placeholder_add_plugin) if cms_version != "0" else ""
237-
),
235+
"add_plugin_url": (admin_reverse(cms_placeholder_add_plugin) if cms_version != "0" else ""),
238236
"url_endpoint": self.url_endpoint or get_url_endpoint(),
239237
"static_url": settings.STATIC_URL + "djangocms_text" if settings.STATIC_URL else "",
240238
"lang": toolbar_setting,

preview.gif

-1.03 MB
Binary file not shown.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from setuptools import setup
22

3-
43
# This call to setup() does all the work
54
setup()

0 commit comments

Comments
 (0)