From 399a8f5c134737aea8815211d13d87632a9d89ff Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 28 Nov 2010 08:38:18 +0100 Subject: [PATCH] updated CHANGELOG and bumped version to 0.9.9 --- CHANGELOG | 4 ++-- lib/Twig/Environment.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 91cf6795d8..1f56ac99e6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -* 0.9.9 +* 0.9.9 (2010-11-28) Backward incompatibilities: * the self special variable has been renamed to _self @@ -27,7 +27,7 @@ Changes: * fixed unary expressions ({{ not(1 or 0) }}) * fixed child templates (with an extend tag) that uses one or more imports * added support for {{ 1 not in [2, 3] }} (more readable than the current {{ not (1 in [2, 3]) }}) - * escaping has been rewritten (from pre-escaping to post-escaping) + * escaping has been rewritten * the implementation of template inheritance has been rewritten (blocks can now be called individually and still work with inheritance) * fixed error handling for if tag when a syntax error occurs within a subparse process diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index d03984b983..dd04479e47 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -11,7 +11,7 @@ class Twig_Environment { - const VERSION = '0.9.9-DEV'; + const VERSION = '0.9.9'; protected $charset; protected $loader;