diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1b54acd2..3b6d6f82 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ Changelog ========= +2.1.0 (2024-07-12) +================== + +* feat: Add versioning actions to settings (admin change view) of versioned objects by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/408 +* fix: Remove workaround for page-specific rendering by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/411 +* fix: Compare versions' back button sometimes returns to invalid URL by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/413 + + +**Full Changelog**: https://github.com/django-cms/djangocms-versioning/compare/2.0.2...2.1.0 + 2.0.2 (2024-05-03) ================== diff --git a/djangocms_versioning/__init__.py b/djangocms_versioning/__init__.py index 0309ae29..9aa3f903 100644 --- a/djangocms_versioning/__init__.py +++ b/djangocms_versioning/__init__.py @@ -1 +1 @@ -__version__ = "2.0.2" +__version__ = "2.1.0" diff --git a/djangocms_versioning/plugin_rendering.py b/djangocms_versioning/plugin_rendering.py index cad0be24..2ed05652 100644 --- a/djangocms_versioning/plugin_rendering.py +++ b/djangocms_versioning/plugin_rendering.py @@ -43,8 +43,8 @@ def render_plugin(self, instance, context, placeholder=None, editable=False): return super().render_plugin(instance, context, placeholder, editable) if cms_version in ("4.1.0", "4.1.1"): - # Only needed for CMS 4.1.0 and 4.1.1 which have fix #7952 not merged - # With #7952, page-specific rendering works well with versioning. + # Only needed for CMS 4.1.0 and 4.1.1 which have fix #7924 not merged + # With #7924, page-specific rendering works well with versioning. def render_obj_placeholder( self, slot, context, inherit, nodelist=None, editable=True ):