From 4cca9fbfbcdb6c1c7ec199417b7cbcfc253d3c3f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 21 Oct 2023 16:18:49 +0200 Subject: [PATCH] [HttpKernel] Fix version --- src/Symfony/Component/HttpKernel/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index f38a2d79c8487..142a65cb177d2 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -78,7 +78,7 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl public const VERSION = '7.0.0-DEV'; public const VERSION_ID = 70000; - public const MAJOR_VERSION = 0; + public const MAJOR_VERSION = 7; public const MINOR_VERSION = 0; public const RELEASE_VERSION = 0; public const EXTRA_VERSION = 'DEV';