From: Fabien Potencier Date: Sun, 28 Nov 2010 07:38:18 +0000 (+0100) Subject: updated CHANGELOG and bumped version to 0.9.9 X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=399a8f5c134737aea8815211d13d87632a9d89ff;p=web%2Fkonrad%2Ftwig.git updated CHANGELOG and bumped version to 0.9.9 --- diff --git a/CHANGELOG b/CHANGELOG index 91cf679..1f56ac9 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 d03984b..dd04479 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;