8000 Fix version in Kernel · symfony/symfony@44d79c4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 44d79c4

Browse files
committed
Fix version in Kernel
1 parent e60a876 commit 44d79c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 5 additions & 5 deletions
70
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6868

6969
private static $freshCache = [];
70

71-
const VERSION = '5.0.0-DEV';
72-
const VERSION_ID = 50000;
71+
const VERSION = '5.1.0-DEV';
72+
const VERSION_ID = 50100;
7373
const MAJOR_VERSION = 5;
74-
const MINOR_VERSION = 0;
74+
const MINOR_VERSION = 1;
7575
const RELEASE_VERSION = 0;
7676
const EXTRA_VERSION = 'DEV';
7777

78-
const END_OF_MAINTENANCE = '07/2020';
79-
const END_OF_LIFE = '07/2020';
78+
const END_OF_MAINTENANCE = '01/2021';
79+
const END_OF_LIFE = '01/2021';
8080

8181
public function __construct(string $environment, bool $debug)
8282
{

0 commit comments

Comments
 (0)
0