diff --git a/CHANGELOG b/CHANGELOG index d479f5642..9de4579c5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# 3.3.9 (2022-XX-XX) +# 3.3.9 (2022-03-25) * Fix custom escapers when using multiple Twig environments * Add support for "constant('class', object)" diff --git a/src/Environment.php b/src/Environment.php index 6bdee6758..ad2ef41cd 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -38,12 +38,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - public const VERSION = '3.3.9-DEV'; + public const VERSION = '3.3.9'; public const VERSION_ID = 30309; public const MAJOR_VERSION = 3; public const MINOR_VERSION = 3; public const RELEASE_VERSION = 9; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; private $charset; private $loader;