From 8ce37115802e257a984a82d38254884085060024 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 5 Jul 2014 14:19:05 +0200 Subject: [PATCH] prepared the 1.16.0 release --- CHANGELOG | 2 +- ext/twig/php_twig.h | 2 +- lib/Twig/Environment.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 483aa42121..1cf54a7f8c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 1.16.0 (2014-XX-XX) +* 1.16.0 (2014-07-05) * changed url_encode to always encode according to RFC 3986 * fixed inheritance in a 'use'-hierarchy diff --git a/ext/twig/php_twig.h b/ext/twig/php_twig.h index 8a1c999b50..aefbf04971 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.16.0-DEV" +#define PHP_TWIG_VERSION "1.16.0" #include "php.h" diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index d53d62040f..d3ba9be91f 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -16,7 +16,7 @@ */ class Twig_Environment { - const VERSION = '1.16.0-DEV'; + const VERSION = '1.16.0'; protected $charset; protected $loader;