From: Florian Ragwitz Date: Tue, 23 Aug 2011 14:22:48 +0000 (+0200) Subject: Version 0.006006 X-Git-Tag: 0.006006^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2F0.006006;hp=e8df925b7b1cc2f985d132b3f15059b981c5d1b7;p=p5sagit%2FDevel-Declare.git Version 0.006006 --- diff --git a/Changes b/Changes index d48e55b..f777e4a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Devel-Declare +0.006006 - 23 Aug 2011 + - Increase default linestr size to avoid reallocations (Zefram). + 0.006005 - 06 Jul 2011 - Add a flag for controlling 'redefined' warnings when installing subs into namespaces (clkao). diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 12280ab..256e0f9 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.006005'; +our $VERSION = '0.006006'; 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 0bf0e9f..ab2d44d 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.006005'; +our $VERSION = '0.006006'; sub install_methodhandler { my $class = shift;