Skip to content

Commit 697ece8

Browse files
authored
Merge pull request symfony#23408 from fabpot/release-3.2.11
released v3.2.11
2 parents f3cba17 + 99e70b8 commit 697ece8

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ in 3.2 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.2.0...v3.2.1
99

10+
* 3.2.11 (2017-07-05)
11+
12+
* bug #23390 [Cache] Handle APCu failures gracefully (nicolas-grekas)
13+
* bug #23378 [FrameworkBundle] Do not remove files from assets dir (1ed)
14+
1015
* 3.2.10 (2017-07-04)
1116

1217
* bug #23366 [FrameworkBundle] Don't get() private services from debug:router (chalasr)

src/Symfony/Component/HttpKernel/Kernel.php

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

61-
const VERSION = '3.2.11-DEV';
61+
const VERSION = '3.2.11';
6262
const VERSION_ID = 30211;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 11;
66-
const EXTRA_VERSION = 'DEV';
66+
const EXTRA_VERSION = '';
6767

6868
const END_OF_MAINTENANCE = '07/2017';
6969
const END_OF_LIFE = '01/2018';

0 commit comments

Comments
 (0)