浏览代码

updated UPDATE file

Fabien Potencier 14 年之前
父节点
当前提交
855206fcb5
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      UPDATE.md

+ 6 - 2
UPDATE.md

@@ -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
 ------------