move Dwarn_only and DwarnS_only into @EXPORT and add to Changes
Matt S Trout [Sat, 13 Feb 2010 20:02:55 +0000 (20:02 +0000)]
Changes
lib/Data/Dumper/Concise/Sugar.pm

diff --git a/Changes b/Changes
index eb704ca..4f1f4b3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+  - add Dwarn_only { ... } (...) and DwarnS_only { ... } $foo to
+    allow filtering of the data before Dumper-ing it
+
 1.200 Feb 13 2010
   - make sure Devel::Dwarn::Dwarn and Devel::Dwarn::DwarnS work
 
index 9a514b2..cae80af 100644 (file)
@@ -7,9 +7,8 @@ use Data::Dumper::Concise ();
 
 BEGIN { @ISA = qw(Exporter) }
 
-@EXPORT = qw(Dwarn DwarnS);
+@EXPORT = qw(Dwarn DwarnS Dwarn_only DwarnS_only);
 
-@EXPORT_OK = qw(Dwarn_only DwarnS_only);
 
 sub Dwarn { warn Data::Dumper::Concise::Dumper @_; @_ }