From 5ac495b475decaa4874f6af9ed7d575e0eca11df Mon Sep 17 00:00:00 2001 From: Josh Yu Date: Fri, 31 May 2024 20:26:42 +0800 Subject: [PATCH] release 1.6.1 (#5) --- CHANGELOG.rst | 5 +++++ djangocms_content_expiry/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4bcd025..3a8d594 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,9 +4,14 @@ Changelog unreleased ========== + + +1.6.1 (2024-05-31) +================== * fix: add `data-popup="yes"` to the link with class `related-widget-wrapper-link`, then the popup will be shown when the user clicks on the link. The JS logic got changed after Django 4.1 upgrade (#15301) + 1.6.0 (2024-05-16) ================== * addd support for django 4.2 diff --git a/djangocms_content_expiry/__init__.py b/djangocms_content_expiry/__init__.py index 3e08891..0619ef8 100644 --- a/djangocms_content_expiry/__init__.py +++ b/djangocms_content_expiry/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.6.0" +__version__ = "1.6.1" default_app_config = "djangocms_content_expiry.apps.DjangocmsContentExpiryConfig"