From 4d19472d4ac1838e0b1f0e029ce1fa4040eb34ea Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 29 Aug 2024 11:51:12 +0200 Subject: [PATCH] Prepare the 3.12.0 release --- CHANGELOG | 2 +- src/Environment.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4d54148ac..ff6951e6d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# 3.12.0 (2024-XX-XX) +# 3.12.0 (2024-08-29) * Deprecate the fact that the `extends` and `use` tags are always allowed in a sandboxed template. This behavior will change in 4.0 where these tags will need to be explicitly allowed like any other tag. diff --git a/src/Environment.php b/src/Environment.php index 237d59803..097d1ca04 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -43,12 +43,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.12.0-DEV'; + public const VERSION = '3.12.0'; public const VERSION_ID = 301200; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 12; public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; private $charset; private $loader;