From daa657073e55b0a78cce8fdd22682fddecc6385f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 27 Sep 2017 11:06:46 -0700 Subject: [PATCH] prepared the 1.35.0 release --- CHANGELOG | 2 +- ext/twig/php_twig.h | 2 +- lib/Twig/Environment.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7f08901191a..f738c841ccd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.35.0 (2017-XX-XX) +* 1.35.0 (2017-09-27) * added Twig_Profiler_Profile::reset() * fixed use TokenParser to return an empty Node diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index 1d32ee5e6ca..7fc1601e8c1 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.35.0-DEV" +#define PHP_TWIG_VERSION "1.35.0" #include "php.h" diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index 92a29b9b9ab..5de2f27fd37 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -16,12 +16,12 @@ */ class Twig_Environment { - const VERSION = '1.35.0-DEV'; + const VERSION = '1.35.0'; const VERSION_ID = 13500; const MAJOR_VERSION = 1; const MINOR_VERSION = 35; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; protected $charset; protected $loader;