From 04e7d44d129572cd717f6fc1ed5182f3f0425f78 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 28 Aug 2017 15:34:58 -0700 Subject: [PATCH 1/2] updated CHANGELOG for 3.3.8 --- CHANGELOG-3.3.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-3.3.md b/CHANGELOG-3.3.md index 185d1432cc..3331ea2a1d 100644 --- a/CHANGELOG-3.3.md +++ b/CHANGELOG-3.3.md @@ -7,6 +7,10 @@ in 3.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/v3.3.0...v3.3.1 +* 3.3.8 (2017-08-28) + + * bug #24016 [DI] Fix tracking env var placeholders nested in object graphs (nicolas-grekas) + * 3.3.7 (2017-08-28) * bug #24009 [DI] Fix tracking env vars when merging configs (bis) (nicolas-grekas) From bad5b6293dae27b763c66c1f71ff435b71e06809 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 28 Aug 2017 15:35:03 -0700 Subject: [PATCH 2/2] updated VERSION for 3.3.8 --- 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 4c333008cd..0fa9dbd545 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -61,12 +61,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface private $projectDir; - const VERSION = '3.3.8-DEV'; + const VERSION = '3.3.8'; const VERSION_ID = 30308; const MAJOR_VERSION = 3; const MINOR_VERSION = 3; const RELEASE_VERSION = 8; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '01/2018'; const END_OF_LIFE = '07/2018';