From e04a204b6f140bda9403ba9ba7195a783749018c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 4 Feb 2022 08:00:58 +0100 Subject: [PATCH] Bump version --- CHANGELOG | 4 ++++ src/Environment.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 459c05af5..490ca429a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 3.3.9 (2022-XX-XX) + + * n/a + # 3.3.8 (2022-02-04) * Fix a security issue when in a sandbox: the `sort` filter must require a Closure for the `arrow` parameter diff --git a/src/Environment.php b/src/Environment.php index ab5e5d02b..6bdee6758 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.3.8'; - public const VERSION_ID = 30308; + public const VERSION = '3.3.9-DEV'; + public const VERSION_ID = 30309; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 3; - public const RELEASE_VERSION = 8; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 9; + public const EXTRA_VERSION = 'DEV'; private $charset; private $loader;