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;