diff --git a/CHANGES.rst b/CHANGES.rst
index 755281dd..024a37c3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,16 @@ Changelog
.. towncrier release notes start
+2.0.39 (2021-07-31)
+-------------------
+
+Bug fixes:
+
+
+- Added upgrade to 5213, Plone 5.2.5.
+ [maurits] (#525)
+
+
2.0.38 (2021-03-02)
-------------------
diff --git a/news/254.feature b/news/254.feature
new file mode 100644
index 00000000..438e9900
--- /dev/null
+++ b/news/254.feature
@@ -0,0 +1,2 @@
+Protect @@historyview with Modify portal content permission. Fixes https://github.com/plone/Products.CMFPlone/issues/3297
+[pbauer]
\ No newline at end of file
diff --git a/news/255.feature b/news/255.feature
new file mode 100644
index 00000000..01207bc4
--- /dev/null
+++ b/news/255.feature
@@ -0,0 +1,2 @@
+Add relations controlpanel as part of https://github.com/plone/Products.CMFPlone/pull/3232
+[pbauer]
\ No newline at end of file
diff --git a/plone/app/upgrade/v52/configure.zcml b/plone/app/upgrade/v52/configure.zcml
index 82b0ff03..9957048d 100644
--- a/plone/app/upgrade/v52/configure.zcml
+++ b/plone/app/upgrade/v52/configure.zcml
@@ -193,4 +193,18 @@
+
+
+
+
+
+
+
diff --git a/plone/app/upgrade/v60/profiles/to_alpha1/actions.xml b/plone/app/upgrade/v60/profiles/to_alpha1/actions.xml
new file mode 100644
index 00000000..55e5faf8
--- /dev/null
+++ b/plone/app/upgrade/v60/profiles/to_alpha1/actions.xml
@@ -0,0 +1,11 @@
+
+
diff --git a/plone/app/upgrade/v60/profiles/to_alpha1/controlpanel.xml b/plone/app/upgrade/v60/profiles/to_alpha1/controlpanel.xml
index a3806412..6f475650 100644
--- a/plone/app/upgrade/v60/profiles/to_alpha1/controlpanel.xml
+++ b/plone/app/upgrade/v60/profiles/to_alpha1/controlpanel.xml
@@ -36,6 +36,12 @@
url_expr="string:${portal_url}/@@member-fields" visible="True"
i18n:attributes="title">
Plone Site Setup: Users and Groups
-
-
+
+
+ Inspect Relations
+
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 891304fc..981a789e 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
from setuptools import setup
-version = '2.0.39.dev0'
+version = '2.0.40.dev0'
setup(
name='plone.app.upgrade',
@@ -17,6 +17,7 @@
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
+ "Framework :: Plone :: 6.0",
"Framework :: Plone :: Core",
"Framework :: Zope2",
"Framework :: Zope :: 4",
@@ -27,6 +28,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
],
keywords='Plone upgrade migration',
author='Plone Foundation',