From 4d90a5008d2c2cc30f5e5c8622e979674178bf6c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 7 May 2013 20:59:32 +0200 Subject: [PATCH] fixed CHANGELOG --- CHANGELOG | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 599410f..7c573a7 100644 --- 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) -- 1.7.2.5