0.11 release to fix crazy errors that somehow the tests did not catch 0.11
Karen Etheridge [Sat, 19 Mar 2011 16:01:59 +0000 (09:01 -0700)]
Changes
dist.ini
lib/MooseX/UndefTolerant/Constructor.pm
t/constructor.t
t/defaults.t

diff --git a/Changes b/Changes
index 90a129d..fee610e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for MooseX-UndefTolerant
 
+0.11    2011-03-19
+    * re-release to fix careless syntax error (whoops!) :)
+
 0.10    2011-03-18
     * No longer apply UndefTolerant behaviour to attributes with a type
       constraint that handles undef (or those with no type constraint at all).
index c9559d5..32e78b4 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -4,7 +4,7 @@ license = Perl_5
 copyright_holder = Cory G Watson
 copyright_year   = 2011
 
-version = 0.10
+version = 0.11
 
 [@Filter]
 -bundle = @Basic
index 4406f2c..18f3307 100644 (file)
@@ -28,7 +28,8 @@ if ( $Moose::VERSION < 1.9900 ) {
         }
 
         return $self->$orig(@_);
-});
+    });
+}
 
 no Moose::Role;
 1;
index e97766e..22d4ce2 100644 (file)
@@ -1,5 +1,4 @@
-#use Test::More;
-use Test::Most 'die';
+use Test::More;
 use Test::Fatal;
 
 {
index 2ae2c76..8e45c1c 100644 (file)
@@ -1,5 +1,4 @@
-#use Test::More;
-use Test::Most 'die';
+use Test::More;
 use Test::Fatal;
 
 use MooseX::UndefTolerant::Attribute ();