From ae39480f010ef88adc7938503c9b02d3baf2f3b3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 25 Nov 2021 14:31:08 +0100 Subject: [PATCH] Prepare the last release for the 1.x series --- CHANGELOG | 6 +++--- README.rst | 2 +- src/Environment.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 885336c6547..ea1319a12ee 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ -# 1.44.6 (2021-XX-XX) +# 1.44.6 (2021-11-25) + + * Last version for the 1.x series - * n/a - # 1.44.5 (2021-09-17) * Improve compatibility with PHP 8.1 diff --git a/README.rst b/README.rst index 7bd3954c30d..5c7bb5461c4 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ and documentation). Twig uses a syntax similar to the Django and Jinja template languages which inspired the Twig runtime environment. -**Twig version 1 will stop being maintained at the end of November 2021.** +**Twig version 1 is not maintained anymore.** Please, upgrade at your earliest convenience. Sponsors diff --git a/src/Environment.php b/src/Environment.php index ee597872932..ae7a8d7d77e 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,12 +41,12 @@ */ class Environment { - public const VERSION = '1.44.6-DEV'; + public const VERSION = '1.44.6'; public const VERSION_ID = 14406; public const MAJOR_VERSION = 1; public const MINOR_VERSION = 44; public const RELEASE_VERSION = 6; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; protected $charset; protected $loader;