From 9935b662e24d6e634da88901ab534cc12e8c728f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 26 Feb 2017 16:07:03 -0800 Subject: [PATCH] prepared the 1.32.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 098e0d36d..0b630a16b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.32.0 (2017-XX-XX) +* 1.32.0 (2017-02-26) * fixed deprecation notice in Twig_Util_DeprecationCollector * added a PSR-11 compatible runtime loader diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index 5580dd5b5..43a839c5c 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.32.0-DEV" +#define PHP_TWIG_VERSION "1.32.0" #include "php.h" diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index 8aa03d194..c146858d7 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -16,12 +16,12 @@ */ class Twig_Environment { - const VERSION = '1.32.0-DEV'; + const VERSION = '1.32.0'; const VERSION_ID = 13200; const MAJOR_VERSION = 1; const MINOR_VERSION = 32; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; protected $charset; protected $loader;