merge
[catagits/HTML-Zoom.git] / Changes
diff --git a/Changes b/Changes
index 39d4d4f..191d465 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,21 @@
+0.009005 2011-05-12
+
+  - Perforce escaping of meta-characters in selectors and test (rafl)
+  - New Feature:  HTML::Zoom will autoload FilterBuilder functions so that
+    you can avoid a bit of boilerplate in method calls.  Now you can replace:
+
+        $z->select('div')->replace_content("Hello World");
+
+    With:
+
+        $z->replace_content(div => "Hello World");
+
+  - Lots of changes to FilterBuilder so that functionality matched the docs
+    better, improved the docs and added tests for documented functions to
+    avoid future regressions.
+
+  - add / to excluded characters in attribute names to correctly parse <br/>
   - add transform_attribute method (rbuels)
-  - add / to excluded characters in attribute names to correctly parse <br/> 
 
 0.009004 2011-02-14
 
@@ -13,7 +29,7 @@
 
 0.009002 2010-10-12
 
-  - Added support for more selector syntax support including: 
+  - Added support for more selector syntax support including:
       element#id
       element.class
       element[attr=foo]