From 75a71c2de52aa8b05eefaa206593d1a419cfa315 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Jul 2021 06:39:17 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 5.3.5 --- CHANGELOG-5.3.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-5.3.md b/CHANGELOG-5.3.md index ecfcb955ad67a..2c38dab5ba2c1 100644 --- a/CHANGELOG-5.3.md +++ b/CHANGELOG-5.3.md @@ -7,6 +7,10 @@ in 5.3 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v5.3.0...v5.3.1 +* 5.3.5 (2021-07-27) + + * bug #42270 [WebProfilerBundle] [WebProfiler] "empty" filter bugfix. Filter with name "empty" is not … (luzrain) + * 5.3.4 (2021-07-26) * bug #41504 [Translation] Fix default value for locales in translation push|pull commands (welcoMattic) From 41dc155b8e6ed27ff7edde1ff4ca310caffda764 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 27 Jul 2021 06:39:22 +0200 Subject: [PATCH 2/2] Update VERSION for 5.3.5 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index f86a796ca44ee..00ee243724438 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private static $freshCache = []; - public const VERSION = '5.3.5-DEV'; + public const VERSION = '5.3.5'; public const VERSION_ID = 50305; public const MAJOR_VERSION = 5; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 5; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; public const END_OF_MAINTENANCE = '01/2022'; public const END_OF_LIFE = '01/2022';