diff --git a/CHANGES.rst b/CHANGES.rst index 75369dfc4..cfccebc65 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,19 @@ Changelog .. towncrier release notes start +3.0.9 (2024-06-07) +------------------ + +Bug fixes: + + +- No longer set ``portal_properties.site_properties.visible_ids`` on site creation. + The ``portal_properties`` tools is deprecated, ``visible_ids`` was not set as real property, and usage of ``visible_ids`` was largely removed in Plone 5.0 already. + You already can no longer set ``visible ids`` in the Editing control panel, nor in the member preferences. + The only remaining use for ``visible_ids``, if set to true, was to show the page ids on the 'select default page' form. + [maurits] (#125) + + 3.0.8 (2024-05-30) ------------------ diff --git a/news/125.bugfix b/news/125.bugfix deleted file mode 100644 index 22b6b61c0..000000000 --- a/news/125.bugfix +++ /dev/null @@ -1,5 +0,0 @@ -No longer set ``portal_properties.site_properties.visible_ids`` on site creation. -The ``portal_properties`` tools is deprecated, ``visible_ids`` was not set as real property, and usage of ``visible_ids`` was largely removed in Plone 5.0 already. -You already can no longer set ``visible ids`` in the Editing control panel, nor in the member preferences. -The only remaining use for ``visible_ids``, if set to true, was to show the page ids on the 'select default page' form. -[maurits] diff --git a/setup.py b/setup.py index e0953ea72..63a7431fb 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os -version = "3.0.9.dev0" +version = "3.0.9" def read(*rnames):