From 35889516bbd6bbe46a600c2c33b03515df4a076e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 29 Apr 2019 16:12:28 +0200 Subject: [PATCH] prepared the 1.40.1 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 85ffbe366..0bb879b6e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.40.1 (2019-XX-XX) +* 1.40.1 (2019-04-29) * fixed regression in NodeTraverser diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index abe950bc2..952105ad4 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.40.1-DEV" +#define PHP_TWIG_VERSION "1.40.1" #include "php.h" diff --git a/src/Environment.php b/src/Environment.php index 76951f4b1..97a7c1614 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -41,12 +41,12 @@ use Twig\TokenParser\TokenParserInterface; */ class Environment { - const VERSION = '1.40.1-DEV'; + const VERSION = '1.40.1'; const VERSION_ID = 14001; const MAJOR_VERSION = 1; const MINOR_VERSION = 40; const RELEASE_VERSION = 1; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; protected $charset; protected $loader;