Skip to content

Commit b0f8a7f

Browse files
authored
Merge pull request #21966 from fabpot/release-3.2.6
released v3.2.6
2 parents 063c8c3 + 762dbb1 commit b0f8a7f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG-3.2.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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.6 (2017-03-10)
11+
12+
* bug #21930 [Cache] Cached files rely on umask (4rthem)
13+
* bug #21946 Use PHPUnit 5.4 instead of 5.3 (j0k3r)
14+
* bug #21936 [PropertyAccess] Use ArrayAdapter in debug mode (chalasr)
15+
1016
* 3.2.5 (2017-03-09)
1117

1218
* bug #21923 [travis] Test with hhvm 3.18 (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.6-DEV';
61+
const VERSION = '3.2.6';
6262
const VERSION_ID = 30206;
6363
const MAJOR_VERSION = 3;
6464
const MINOR_VERSION = 2;
6565
const RELEASE_VERSION = 6;
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)