From: Matt S Trout Date: Tue, 11 Jan 2011 21:51:44 +0000 (+0000) Subject: 1.001000 release commit X-Git-Tag: v1.001000 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FEval-WithLexicals.git;a=commitdiff_plain;h=1de34059104e948aa75ce26b562eb9b3f14980e7;hp=9a82ac009ea216fd815e317f0155fe82584f9bf3 1.001000 release commit --- diff --git a/Changes b/Changes index 7ebf515..b2e997b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ - - Add a #line directive so it's clearer where errors occurred - - Filter out lexicals called '&' since these are anon subs +1.1.0 2011-01-11 25:51:00 + - Add a #line directive so it's clearer where errors occurred (DGL) + - Filter out lexicals called '&' since these are anon subs (MSTROUT) 1.0.0 2010-12-05 17:04:00 - Initial release (MSTROUT) diff --git a/lib/Eval/WithLexicals.pm b/lib/Eval/WithLexicals.pm index bd70d69..31703e6 100644 --- a/lib/Eval/WithLexicals.pm +++ b/lib/Eval/WithLexicals.pm @@ -3,7 +3,7 @@ package Eval::WithLexicals; use Moo; use Sub::Quote; -our $VERSION = '1.000000'; # 1.0.0 +our $VERSION = '1.001000'; # 1.1.0 $VERSION = eval $VERSION; has lexicals => (is => 'rw', default => quote_sub q{ {} });