Skip to content

Commit 126b2c9

Browse files
committed
Prepare the 3.14.0 release
1 parent 11f68e2 commit 126b2c9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# 3.14.0 (2024-XX-XX)
1+
# 3.14.0 (2024-09-09)
22

3+
* Fix a security issue when an included sandboxed template has been loaded before without the sandbox context
34
* Add the possibility to reset globals via `Environment::resetGlobals()`
45
* Deprecate `Environment::mergeGlobals()`
56

src/Environment.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
*/
4444
class Environment
4545
{
46-
public const VERSION = '3.14.0-DEV';
46+
public const VERSION = '3.14.0';
4747
public const VERSION_ID = 31400;
4848
public const MAJOR_VERSION = 3;
4949
public const MINOR_VERSION = 14;
5050
public const RELEASE_VERSION = 0;
51-
public const EXTRA_VERSION = 'DEV';
51+
public const EXTRA_VERSION = '';
5252

5353
private $charset;
5454
private $loader;

0 commit comments

Comments
 (0)