fixed CHANGELOG
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 7 May 2013 18:59:32 +0000 (20:59 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 7 May 2013 18:59:51 +0000 (20:59 +0200)
CHANGELOG

index 599410f..7c573a7 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
 * 1.13.0 (2013-XX-XX)
 
+ * fixed getting a numeric-like item on a variable ('09' for instance)
+ * fixed getting a boolean or float key on an array, so it is consistent with PHP's array access:
+   `{{ array[false] }}` behaves the same as `echo $array[false];` (equals `$array[0]`)
  * made the escape filter 20% faster for happy path (escaping string for html with UTF-8)
  * changed ☃ to § in tests
  * enforced usage of named arguments after positional ones
@@ -11,8 +14,6 @@
  * fixed fatal error that should be an exception when adding a filter/function/test too late
  * added a batch filter
  * added support for encoding an array as query string in the url_encode filter
- * fixed getting a numeric-like item on a variable ('09' for instance)
- * fixed getting a boolean or float key on an array, so it is consistent with PHP's array access: `{{ array[false] }}` behaves the same as `echo $array[false];` (equals `$array[0]`)
 
 * 1.12.2 (2013-02-09)