From 6ff9b0e440fa66f97f207e181c41340ddfa5683d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 25 Mar 2022 10:37:52 +0100 Subject: [PATCH] Prepare the 3.3.9 release --- CHANGELOG | 2 +- src/Environment.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d479f5642..9de4579c5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# 3.3.9 (2022-XX-XX) +# 3.3.9 (2022-03-25) * Fix custom escapers when using multiple Twig environments * Add support for "constant('class', object)" diff --git a/src/Environment.php b/src/Environment.php index 6bdee6758..ad2ef41cd 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.3.9-DEV'; + public const VERSION = '3.3.9'; public const VERSION_ID = 30309; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 9; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; private $charset; private $loader;