From: Florian Ragwitz <rafl@debian.org>
Date: Wed, 6 Jul 2011 13:31:09 +0000 (+0200)
Subject: Version 0.006005
X-Git-Tag: 0.006005^0
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5c82d5478de9d26a18ff812912b91b9170126b31;p=p5sagit%2FDevel-Declare.git

Version 0.006005
---

diff --git a/Changes b/Changes
index 089b9ed..d48e55b 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Changes for Devel-Declare
 
+0.006005 - 06 Jul 2011
+  - Add a flag for controlling 'redefined' warnings when installing subs into
+    namespaces (clkao).
+
 0.006004 - 02 May 2011
   - Bail out earlier when being called while not lexing (Zefram).
   - Make sure we continue working with Devel::CallParser loaded (Zefram).
diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm
index 9fb9d19..12280ab 100644
--- a/lib/Devel/Declare.pm
+++ b/lib/Devel/Declare.pm
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use 5.008001;
 
-our $VERSION = '0.006004';
+our $VERSION = '0.006005';
 
 use constant DECLARE_NAME => 1;
 use constant DECLARE_PROTO => 2;
diff --git a/lib/Devel/Declare/MethodInstaller/Simple.pm b/lib/Devel/Declare/MethodInstaller/Simple.pm
index cfe506e..0bf0e9f 100644
--- a/lib/Devel/Declare/MethodInstaller/Simple.pm
+++ b/lib/Devel/Declare/MethodInstaller/Simple.pm
@@ -7,7 +7,7 @@ use Sub::Name;
 use strict;
 use warnings;
 
-our $VERSION = '0.006004';
+our $VERSION = '0.006005';
 
 sub install_methodhandler {
   my $class = shift;