From: Zefram Date: Mon, 12 Sep 2011 18:52:17 +0000 (+0100) Subject: give D:D:Context::Simple a version number X-Git-Tag: 0.006007~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=commitdiff_plain;h=e851e21f05bb43f80a57f21305ea1086a1a12059;hp=8ec78a85abda5a1bab263a1b1b49b979a3539c29 give D:D:Context::Simple a version number --- diff --git a/Changes b/Changes index cc32696..2e79acc 100644 --- a/Changes +++ b/Changes @@ -10,6 +10,7 @@ Changes for Devel-Declare - Return undef from toke_scan_str if string was unterminated. - Detect and croak if unwanted reallocation occurs during toke_scan_str. - Avoid memory leak in toke_scan_str. + - Give Devel::Declare::Context::Simple a version number. - Add MYMETA.{json,yml} to MANIFEST.SKIP and .gitignore. 0.006006 - 23 Aug 2011 diff --git a/lib/Devel/Declare/Context/Simple.pm b/lib/Devel/Declare/Context/Simple.pm index 8ea318e..800758a 100644 --- a/lib/Devel/Declare/Context/Simple.pm +++ b/lib/Devel/Declare/Context/Simple.pm @@ -6,6 +6,8 @@ use Devel::Declare (); use B::Hooks::EndOfScope; use Carp qw/confess/; +our $VERSION = '0.006006'; + sub new { my $class = shift; bless {@_}, $class;