From d495243dade48c39b6a5261c26cdbd8c5703f6a0 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 21 Oct 2020 14:35:06 +0200 Subject: [PATCH] Prepare the 2.14.0 release --- CHANGELOG | 2 +- src/Environment.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9e25a945c..aacb726ff 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# 2.14.0 (2020-XX-XX) +# 2.14.0 (2020-10-21) * Fix sandbox support when using "include(template_from_string())" * Make round brackets optional for one argument tests like "same as" or "divisible by" diff --git a/src/Environment.php b/src/Environment.php index 4955c1b8d..1575ce08c 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '2.14.0-DEV'; + const VERSION = '2.14.0'; const VERSION_ID = 21400; const MAJOR_VERSION = 2; const MINOR_VERSION = 14; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; private $charset; private $loader;