Skip to content

Commit

Permalink
Prepare the 2.16.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Sep 9, 2024
1 parent 2102dd1 commit 1918594
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
*/
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;
Expand Down

0 comments on commit 1918594

Please sign in to comment.