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;