From 3027568bbb5bbaf4c810f27c910077b594f95568 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 3 Dec 2010 06:56:36 +0100 Subject: [PATCH] added missing info in CHANGELOG for 0.9.9 --- CHANGELOG | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d1e2933..cfbca2c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -30,6 +30,7 @@ Backward incompatibilities: (the old behavior is still possible by adding the "only" keyword) * moved Exceptions to Twig_Error_* (Twig_SyntaxError/Twig_RuntimeError are now Twig_Error_Syntax/Twig_Error_Runtime) * removed support for {{ 1 < i < 3 }} (use {{ i > 1 and i < 3 }} instead) + * the "in" filter has been removed ({{ a|in(b) }} should now be written {{ a in b }}) Changes: * added file and line to Twig_Error_Runtime exceptions thrown from Twig_Template -- 1.7.2.5