Skip to content

Commit

Permalink
Prepare release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jul 11, 2024
1 parent f31b5e0 commit 4e11f8e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================

Expand Down
2 changes: 1 addition & 1 deletion djangocms_versioning/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.2"
__version__ = "2.1.0"
4 changes: 2 additions & 2 deletions djangocms_versioning/plugin_rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
):
Expand Down

0 comments on commit 4e11f8e

Please sign in to comment.