projects
/
gitmo/MooseX-UndefTolerant.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c5dd383
)
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
patch
|
blob
|
blame
|
history
dist.ini
patch
|
blob
|
blame
|
history
lib/MooseX/UndefTolerant/Constructor.pm
patch
|
blob
|
blame
|
history
t/constructor.t
patch
|
blob
|
blame
|
history
t/defaults.t
patch
|
blob
|
blame
|
history
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).
diff --git
a/dist.ini
b/dist.ini
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
diff --git
a/lib/MooseX/UndefTolerant/Constructor.pm
b/lib/MooseX/UndefTolerant/Constructor.pm
index
4406f2c
..
18f3307
100644
(file)
--- a/
lib/MooseX/UndefTolerant/Constructor.pm
+++ b/
lib/MooseX/UndefTolerant/Constructor.pm
@@
-28,7
+28,8
@@
if ( $Moose::VERSION < 1.9900 ) {
}
return $self->$orig(@_);
-});
+ });
+}
no Moose::Role;
1;
diff --git
a/t/constructor.t
b/t/constructor.t
index
e97766e
..
22d4ce2
100644
(file)
--- a/
t/constructor.t
+++ b/
t/constructor.t
@@
-1,5
+1,4
@@
-#use Test::More;
-use Test::Most 'die';
+use Test::More;
use Test::Fatal;
{
diff --git
a/t/defaults.t
b/t/defaults.t
index
2ae2c76
..
8e45c1c
100644
(file)
--- a/
t/defaults.t
+++ b/
t/defaults.t
@@
-1,5
+1,4
@@
-#use Test::More;
-use Test::Most 'die';
+use Test::More;
use Test::Fatal;
use MooseX::UndefTolerant::Attribute ();