From 7a2e23ce17c048d2c393a55d76d72eb0dbbf356b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 28 Sep 2022 10:43:25 +0200 Subject: [PATCH] Bump version --- CHANGELOG | 4 ++++ src/Environment.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 379387644..923eb8aca 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 3.4.4 (2022-XX-XX) + + * n/a + # 3.4.3 (2022-09-28) * Fix a security issue on filesystem loader (possibility to load a template outside a configured directory) diff --git a/src/Environment.php b/src/Environment.php index 85aaab916..33adce1bf 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.4.3'; - public const VERSION_ID = 30403; + public const VERSION = '3.4.4-DEV'; + public const VERSION_ID = 30404; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 3; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 4; + public const EXTRA_VERSION = 'DEV'; private $charset; private $loader;