Version 0.05
Tomas Doran [Sat, 3 Mar 2012 05:58:26 +0000 (05:58 +0000)]
Changes
README
lib/MooseX/MetaDescription.pm
lib/MooseX/MetaDescription/Description.pm
lib/MooseX/MetaDescription/Meta/Attribute.pm
lib/MooseX/MetaDescription/Meta/Class.pm
lib/MooseX/MetaDescription/Meta/Trait.pm

diff --git a/Changes b/Changes
index d781845..9e167f6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension MooseX::MetaDescription
 
+    * Fix tests to work regardless of order of get_all_attributes
+      return value (RT#81713)
+
+0.05 Sat. Mar 3, 2012
+    * Fix undeclared dependency on Test::Excpetion. RT#75491
+
 0.04 Tue. Feb 8, 2010
     * Fix tests to work without undocumented features which
       aren't present in the latest refactor of attributes in roles
diff --git a/README b/README
index d465790..b4c76db 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-MooseX::MetaDescription version 0.04
+MooseX::MetaDescription version 0.05
 ===========================
 
 See the individual module documentation for more information
index 1d3832a..ef618f7 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::MetaDescription;
 use Moose;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use MooseX::MetaDescription::Meta::Class;
index cacb6a2..e8c0a12 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::MetaDescription::Description;
 use Moose;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'descriptor' => (
index 9185315..7e9e729 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::MetaDescription::Meta::Attribute;
 use Moose;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends 'Moose::Meta::Attribute';
index 8d91e69..9cd99ba 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::MetaDescription::Meta::Class;
 use Moose;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends 'Moose::Meta::Class';
index 9d2ed37..ecbc840 100644 (file)
@@ -1,7 +1,7 @@
 package MooseX::MetaDescription::Meta::Trait;
 use Moose::Role;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'description' => (