Skip to content

Commit b96a144

Browse files
authored
Merge pull request symfony#20693 from fabpot/release-3.2.0
released v3.2.0
2 parents c500a3e + df8b30b commit b96a144

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-3.2.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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.0 (2016-11-30)
11+
12+
* bug #20687 [FrameworkBundle] Forbid env parameters in routing configuration (nicolas-grekas)
13+
* bug #20607 [Validator] Bring egulias/email-validator ~2.0 to parity with ~1.2 (Lctrs)
14+
* bug #20671 [Config] ConfigCache::isFresh() should return false when unserialize() fails (nicolas-grekas)
15+
* bug #20679 [VarDumper] Use default color for ellipsed namespaces/paths (nicolas-grekas)
16+
* bug #20676 [ClassLoader] Use only forward slashes in generated class map (nicolas-grekas)
17+
* bug #20664 [Validator] ensure the proper context for nested validations (xabbuh)
18+
* bug #20661 bug #20653 [WebProfilerBundle] Profiler includes ghost panels (jzawadzki)
19+
* bug #20652 Fixed getRouteParams() when no parameters are available (wouterj)
20+
1021
* 3.2.0-RC2 (2016-11-27)
1122

1223
* bug #20601 [FrameworkBundle] Don't rely on any parent definition for "cache.annotations" (nicolas-grekas)

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