8000 Merge pull request #18913 from fabpot/release-3.1.0 · symfony/symfony@e71d471 · GitHub
[go: up one dir, main page]

Skip to content

Commit e71d471

Browse files
committed
Merge pull request #18913 from fabpot/release-3.1.0
released v3.1.0
2 parents 73ca90d + e62f832 commit e71d471

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG-3.1.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ in 3.1 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.1.0...v3.1.1
99

10+
* 3.1.0 (2016-05-30)
11+
12+
* bug #18889 [Console] SymfonyStyle: Fix alignment/prefixing of multi-line comments (chalasr)
13+
* bug #18907 [Routing] Fix the annotation loader taking a class constant as a beginning of a class name (jakzal, nicolas-grekas)
14+
* bug #18899 [Yaml] search for colons in strings only (xabbuh)
15+
1016
* 3.1.0-RC1 (2016-05-26)
1117

1218
* bug #18879 [Console] SymfonyStyle: Align multi-line/very-long-line blocks (chalasr)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '3.1.0-DEV';
62+
const VERSION = '3.1.0';
6363
const VERSION_ID = 30100;
6464
const MAJOR_VERSION = 3;
6565
const MINOR_VERSION = 1;
6666
const RELEASE_VERSION = 0;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '01/2017';
7070
const END_OF_LIFE = '07/2017';

0 commit comments

Comments
 (0)
0