updated UPDATE file

This commit is contained in:
Fabien Potencier 2011-04-15 10:47:21 +02:00
parent de390fd893
commit 855206fcb5

View File

@ -9,16 +9,20 @@ timeline closely anyway.
PR11 to PR12
------------
* AsseticBundle's XML `bundle` node has been normalized to match other similar
nodes
* XML configurations have been normalized. All tags with only one attribute
have been converted to tag content:
Before:
<bundle name="MyBundle" />
<app:engine id="twig" />
<twig:extension id="twig.extension.debug" />
After:
<bundle>MyBundle</bundle>
<app:engine>twig</app:engine>
<twig:extension>twig.extension.debug</twig:extension>
PR10 to PR11
------------