updated changelog for tagging new version and minor other updates
John Napiorkowski [Wed, 10 Dec 2008 00:36:43 +0000 (00:36 +0000)]
Changes
Makefile.PL
lib/MooseX/Types/Structured.pm

diff --git a/Changes b/Changes
index c64f696..a762d5d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,13 @@
 Revision history for MooseX-Types-Structured
 
-0.06    06 November 2008
+0.07    09 December 2008
+        - Fixed typo in previous changelog
+        - documentation improvements and updates
+        - increased version requirement for MooseX::Types so that we can take
+          advantage of the recursion support added.
+        - added test for recursion.
+
+0.06    06 December 2008
         - Added a 'helper' type constraint called Optional. See docs for more.
         - added lots of tests to cover the API better, coverage and fixes for
           the ->parameterize method in particular have been clarified.
index 8fa2a42..93ba307 100644 (file)
@@ -9,7 +9,7 @@ license 'perl';
 
 ## Module dependencies
 requires 'Moose' => '0.63';
-requires 'MooseX::Types' => '0.07';
+requires 'MooseX::Types' => '0.08';
 
 ## Testing dependencies
 build_requires 'Test::More' => '0.70';
index 4d97757..6982691 100644 (file)
@@ -5,7 +5,7 @@ use Moose::Util::TypeConstraints;
 use MooseX::Meta::TypeConstraint::Structured;
 use MooseX::Types -declare => [qw(Dict Tuple Optional)];
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 our $AUTHORITY = 'cpan:JJNAPIORK';
 
 =head1 NAME