From 575cd5028362da591facde1ef5d7b94553c375c9 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 14 May 2019 13:59:08 +0200 Subject: [PATCH] prepared the 1.41.0 release --- CHANGELOG | 2 +- ext/twig/php_twig.h | 2 +- src/Environment.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b14edf9c6..72948e575 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.41.0 (2019-XX-XX) +* 1.41.0 (2019-05-14) * fixed support for PHP 7.4 * added "filter", "map", and "reduce" filters (and support for arrow functions) diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index 889a1393a..06215fa49 100644 --- a/ext/twig/php_twig.h +++ b/ext/twig/php_twig.h @@ -15,7 +15,7 @@ #ifndef PHP_TWIG_H #define PHP_TWIG_H -#define PHP_TWIG_VERSION "1.41.0-DEV" +#define PHP_TWIG_VERSION "1.41.0" #include "php.h" diff --git a/src/Environment.php b/src/Environment.php index dde013c85..ec59daa60 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,12 +41,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '1.41.0-DEV'; + const VERSION = '1.41.0'; const VERSION_ID = 14100; const MAJOR_VERSION = 1; const MINOR_VERSION = 41; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; protected $charset; protected $loader;