From ed19f4bf9d19c4ef920b5d8243910bd32e85b9ba Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 15 May 2022 08:25:28 +0200 Subject: [PATCH] Prepare the 3.4.0 release --- composer.json | 2 +- src/Environment.php | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 91ff912fc..33e46405c 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ }, "extra": { "branch-alias": { - "dev-master": "3.3-dev" + "dev-master": "3.4-dev" } } } diff --git a/src/Environment.php b/src/Environment.php index 9543b1d2c..7c9c8952d 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.3.11-DEV'; - public const VERSION_ID = 30311; + public const VERSION = '3.4.0'; + public const VERSION_ID = 30400; public const MAJOR_VERSION = 3; - public const MINOR_VERSION = 3; - public const RELEASE_VERSION = 11; - public const EXTRA_VERSION = 'DEV'; + public const MINOR_VERSION = 4; + public const RELEASE_VERSION = 0; + public const EXTRA_VERSION = ''; private $charset; private $loader;