Skip to content

Commit

Permalink
Prepare the 3.11.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Sep 10, 2024
1 parent 41103dc commit ff063af
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,3 +1,7 @@
# 3.11.1 (2024-09-10)

* Fix a security issue when an included sandboxed template has been loaded before without the sandbox context

# 3.11.0 (2024-08-08)

* Add `Twig\Cache\ChainCache` and `Twig\Cache\ReadOnlyFilesystemCache`
Expand Down
6 changes: 3 additions & 3 deletions src/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
*/
class Environment
{
public const VERSION = '3.11.0';
public const VERSION_ID = 301100;
public const VERSION = '3.11.1';
public const VERSION_ID = 301101;
public const MAJOR_VERSION = 4;
public const MINOR_VERSION = 11;
public const RELEASE_VERSION = 0;
public const RELEASE_VERSION = 1;
public const EXTRA_VERSION = '';

private $charset;
Expand Down

0 comments on commit ff063af

Please sign in to comment.