Skip to content

Commit

Permalink
updated CHANGELOG and bumped version to 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Nov 28, 2010
1 parent c34dee8 commit 399a8f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Twig/Environment.php
Expand Up @@ -11,7 +11,7 @@

class Twig_Environment
{
const VERSION = '0.9.9-DEV';
const VERSION = '0.9.9';

protected $charset;
protected $loader;
Expand Down

0 comments on commit 399a8f5

Please sign in to comment.