From 99d2acd8088a6b742381eebc27436fcb1f086d7b Mon Sep 17 00:00:00 2001 From: Andrei Tsaregorodtsev Date: Wed, 19 May 2021 17:42:22 +0200 Subject: [PATCH] v7r2p7 notes and tags --- release.notes | 12 ++++++++++++ src/DIRAC/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/release.notes b/release.notes index 050c7439c72..ec99a5d946e 100644 --- a/release.notes +++ b/release.notes @@ -1,3 +1,15 @@ +[v7r2p7] + +*Core +CHANGE: (#5142) Move MySQL.ConnectionPool class to the module level +CHANGE: (#5142) Move RequestHandler.ConnectionError to the module level +FIX: (#5133) The RPC Client class should now be threadsafe +FIX: (#5133) Correctly add RPC attributes to client objects in Python 3 +FIX: (#5130) Avoid race when importing modules which can cause classes to be redefined + +*Transformation +FIX: (#5135) TransformationBody update is too long for parameters + [v7r2p6] *Core diff --git a/src/DIRAC/__init__.py b/src/DIRAC/__init__.py index 6ad4f727af9..87fdf522f8b 100755 --- a/src/DIRAC/__init__.py +++ b/src/DIRAC/__init__.py @@ -105,7 +105,7 @@ else: majorVersion = 7 minorVersion = 2 - patchLevel = 6 + patchLevel = 7 preVersion = 0 version = "v%sr%s" % (majorVersion, minorVersion)