From 393c9086ff7b50ce7f2ceaaa75cc809948c252a2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 5 Jan 2021 11:26:31 +0100 Subject: [PATCH] Prepare the 2.14.2 release --- CHANGELOG | 4 ++-- src/Environment.php | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 108255515..762051721 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ -# 2.15.0 (2021-XX-XX) +# 2.14.2 (2021-XX-XX) - * n/a + * Fix "odd" not working for negative numbers # 2.14.1 (2020-10-27) diff --git a/src/Environment.php b/src/Environment.php index 3bf2434c4..71bf07943 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '2.15.0-DEV'; - const VERSION_ID = 21500; + const VERSION = '2.14.2'; + const VERSION_ID = 21402; const MAJOR_VERSION = 2; - const MINOR_VERSION = 15; - const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const MINOR_VERSION = 14; + const RELEASE_VERSION = 2; + const EXTRA_VERSION = ''; private $charset; private $loader;