fixed for cpan master
John Napiorkowski [Wed, 11 Jan 2012 14:40:21 +0000 (09:40 -0500)]
Changes
MANIFEST.SKIP
lib/MooseX/Attribute/ENV.pm

diff --git a/Changes b/Changes
index 7ca334a..84cab6e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension MooseX-Attribute-ENV.
-       
+
+0.02    11 January 2011
+        - fixed a bug caused by the fact my generated default code was returning
+          an explicit undef, and not nothing.  This caused errors when the
+          attribute was optional but had a type constraint.
+        - Removed some unneeded whitespace from code
+
 0.01    07 June 2008
         - Setup repository, created application skeleton
         - Created tests, released.
index d164814..f7dc1d0 100644 (file)
@@ -4,6 +4,7 @@
 \bCVS\b
 ,v$
 \B\.svn\b
+\B\.git\b
 
 # Avoid Makemaker generated and utility files.
 \bMakefile$
@@ -37,4 +38,4 @@
 \.tar\.gz$
 
 # Skip maint stuff
-^maint/
\ No newline at end of file
+^maint/
index 1f73156..c1e57ff 100644 (file)
@@ -2,7 +2,7 @@ package MooseX::Attribute::ENV;
 
 use Moose::Role;
 
-our $VERSION = "0.01";
+our $VERSION = "0.02";
 our $AUTHORITY = 'cpan:JJNAPIORK';
 
 =head1 NAME