From aa223f5c6c7c6ae6876e5ed44b05797a6f3293da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81re=CC=81my=20Marodon?= Date: Thu, 18 May 2017 10:33:55 +0200 Subject: [PATCH] Fix the kernel version of 4.0 --- 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 ae31a46fc9..02fe035c0b 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -63,7 +63,7 @@ abstract class Kernel implements KernelInterface, TerminableInterface const VERSION = '4.0.0-DEV'; const VERSION_ID = 40000; - const MAJOR_VERSION = 0; + const MAJOR_VERSION = 4; const MINOR_VERSION = 0; const RELEASE_VERSION = 0; const EXTRA_VERSION = 'DEV';