Skip to content

Commit e4f0b41

Browse files
authored
chore: Prepare release 2.1.0 (#61)
* Update setup.py * Update __init__.py * Update column.html * Update column.html * Update CHANGELOG.rst
1 parent 445e94f commit e4f0b41

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.rst

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

5+
2.1.0 (2024-05-10)
6+
==================
7+
8+
* fix: add missing migration by @sephii in https://github.com/django-cms/djangocms-column/pull/58
9+
* fix: Update cms_plugins.py for django CMS 4 compatibility by @aacimov in https://github.com/django-cms/djangocms-column/pull/60
10+
511

612
2.0.0 (2022-04-11)
713
==================

djangocms_column/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.0'
1+
__version__ = '2.1.0'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% load cms_tags %}
2-
<div class="column" style="width: {{ instance.width }}; float: left;">
2+
<div class="column" style="width: {{ instance.width }}; float: left; float: inline-start;">
33
{% for plugin in instance.child_plugin_instances %}
44
{% render_plugin plugin %}
55
{% endfor %}
6-
</div>
6+
</div>

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
'Framework :: Django',
1717
'Framework :: Django :: 2.2',
1818
'Framework :: Django :: 3.2',
19+
'Framework :: Django :: 4.2',
20+
'Framework :: Django :: 5.0',
1921
'Intended Audience :: Developers',
2022
'License :: OSI Approved :: BSD License',
2123
'Operating System :: OS Independent',
@@ -25,6 +27,8 @@
2527
'Programming Language :: Python :: 3.8',
2628
'Programming Language :: Python :: 3.9',
2729
'Programming Language :: Python :: 3.10',
30+
'Programming Language :: Python :: 3.11',
31+
'Programming Language :: Python :: 3.12',
2832
'Topic :: Communications',
2933
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3034
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',

0 commit comments

Comments
 (0)