Task-Moose updated
Stevan Little [Mon, 28 Apr 2008 14:32:37 +0000 (14:32 +0000)]
Changes
Makefile.PL
README
lib/Task/Moose.pm

diff --git a/Changes b/Changes
index 7b67568..a7bc6e0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Task-Moose
 
+0.02
+    - added:
+      - MooseX::Clone
+      - MooseX::Role::TraitConstructor
+
 0.01 Fri. March 14, 2008
     - making it easier to install Moose and all 
       the various extension modules
\ No newline at end of file
index 9dcd8f4..a0791d0 100644 (file)
@@ -36,6 +36,10 @@ feature 'Making Moose constructors stricter',
     -default                    => 0,
     'MooseX::StrictConstructor' => 0;
     
+feature 'Runtime Trait application in constructors',
+    -default                         => 0,
+    'MooseX::Role::TraitConstructor' => 0;    
+    
 feature 'Globref instance type for Moose',
     -default                  => 0,
     'MooseX::GlobRef::Object' => 0;
@@ -59,6 +63,10 @@ feature 'Moose-ish Iterator support role',
 feature 'Moose-ish plugin system',
     -default                    => 0,    
     'MooseX::Object::Pluggable' => 0;
+    
+feature 'More robust and flexible cloning support',
+    -default        => 0,
+    'MooseX::Clone' => 0;    
 
 feature 'Moose type extensions',
     -default        => 0,
diff --git a/README b/README
index dbf0efd..b5a1616 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Task-Moose version 0.01
+Task-Moose version 0.02
 ===========================
 
 See the POD documentation for a list of modules this 
index ead188a..08cf318 100644 (file)
@@ -1,6 +1,6 @@
 package Task::Moose;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 1;
@@ -48,6 +48,10 @@ L<MooseX::Method>
 =item I<Making Moose constructors stricter>
     
 L<MooseX::StrictConstructor>
+
+=item I<Runtime Trait application in constructors>
+
+L<MooseX::Role::TraitConstructor>
     
 =item I<Globref instance type for Moose>
     
@@ -73,6 +77,10 @@ L<MooseX::Iterator>
 
 L<MooseX::Object::Pluggable>
 
+=item I<More robust and flexible cloning support>
+    
+L<MooseX::Clone>
+
 =item I<Moose type extensions>
     
 L<MooseX::Types>