updated CHANGELOG and bumped version to 0.9.9
authorFabien Potencier <fabien.potencier@gmail.com>
Sun, 28 Nov 2010 07:38:18 +0000 (08:38 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sun, 28 Nov 2010 07:38:18 +0000 (08:38 +0100)
CHANGELOG
lib/Twig/Environment.php

index 91cf679..1f56ac9 100644 (file)
--- 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
index d03984b..dd04479 100644 (file)
@@ -11,7 +11,7 @@
 
 class Twig_Environment
 {
-    const VERSION = '0.9.9-DEV';
+    const VERSION = '0.9.9';
 
     protected $charset;
     protected $loader;