diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 56dac7a..7ec9532 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ================== diff --git a/djangocms_column/__init__.py b/djangocms_column/__init__.py index afced14..a33997d 100644 --- a/djangocms_column/__init__.py +++ b/djangocms_column/__init__.py @@ -1 +1 @@ -__version__ = '2.0.0' +__version__ = '2.1.0' diff --git a/djangocms_column/templates/cms/plugins/column.html b/djangocms_column/templates/cms/plugins/column.html index b328bef..3d646f4 100644 --- a/djangocms_column/templates/cms/plugins/column.html +++ b/djangocms_column/templates/cms/plugins/column.html @@ -1,6 +1,6 @@ {% load cms_tags %} -
+
{% for plugin in instance.child_plugin_instances %} {% render_plugin plugin %} {% endfor %} -
\ No newline at end of file +
diff --git a/setup.py b/setup.py index d1a5955..cc03cfa 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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',