Skip to content

Commit

Permalink
chore: Prepare release 2.1.0 (#61)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update __init__.py

* Update column.html

* Update column.html

* Update CHANGELOG.rst
  • Loading branch information
fsbraun authored May 10, 2024
1 parent 445e94f commit e4f0b41
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

2.1.0 (2024-05-10)
==================

* fix: add missing migration by @sephii in https://github.com/django-cms/djangocms-column/pull/58
* fix: Update cms_plugins.py for django CMS 4 compatibility by @aacimov in https://github.com/django-cms/djangocms-column/pull/60


2.0.0 (2022-04-11)
==================
Expand Down
2 changes: 1 addition & 1 deletion djangocms_column/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.1.0'
4 changes: 2 additions & 2 deletions djangocms_column/templates/cms/plugins/column.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% load cms_tags %}
<div class="column" style="width: {{ instance.width }}; float: left;">
<div class="column" style="width: {{ instance.width }}; float: left; float: inline-start;">
{% for plugin in instance.child_plugin_instances %}
{% render_plugin plugin %}
{% endfor %}
</div>
</div>
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand All @@ -25,6 +27,8 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',
Expand Down

0 comments on commit e4f0b41

Please sign in to comment.