Prepare the 2.16.1 release

This commit is contained in:
Fabien Potencier
2024-09-09 19:53:56 +02:00
parent 2102dd1359
commit 19185947ec
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -1,5 +1,9 @@
**Twig 2 is not maintained anymore**
# 2.16.1 (2024-09-09)
* Fix a security issue when an included sandboxed template has been loaded before without the sandbox context
# 2.16.0 (2023-12-22)
* Last version for the 2.x series
+3 -3
View File
@@ -38,11 +38,11 @@ use Twig\TokenParser\TokenParserInterface;
*/
class Environment
{
public const VERSION = '2.16.0';
public const VERSION_ID = 21600;
public const VERSION = '2.16.1';
public const VERSION_ID = 21601;
public const MAJOR_VERSION = 2;
public const MINOR_VERSION = 16;
public const RELEASE_VERSION = 0;
public const RELEASE_VERSION = 1;
public const EXTRA_VERSION = '';
private $charset;