From 9612dd4f1320eeef2c3f75af3d3d073524765481 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 15 May 2022 08:26:19 +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 a74f6de01..231934acd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +# 3.4.1 (2022-XX-XX) + +* n/a + # 3.4.0 (2022-05-22) * Add support for named closures diff --git a/src/Environment.php b/src/Environment.php index 7c9c8952d..9664e85c2 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.4.0'; - public const VERSION_ID = 30400; + public const VERSION = '3.4.1-DEV'; + public const VERSION_ID = 30401; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 4; - public const RELEASE_VERSION = 0; - public const EXTRA_VERSION = ''; + public const RELEASE_VERSION = 1; + public const EXTRA_VERSION = 'DEV'; private $charset; private $loader;