add changelog entry, bump version number
Ricardo Signes [Fri, 23 Apr 2010 20:41:38 +0000 (16:41 -0400)]
15 files changed:
Changes
lib/Moose/Autobox.pm
lib/Moose/Autobox/Array.pm
lib/Moose/Autobox/Code.pm
lib/Moose/Autobox/Defined.pm
lib/Moose/Autobox/Hash.pm
lib/Moose/Autobox/Indexed.pm
lib/Moose/Autobox/Item.pm
lib/Moose/Autobox/List.pm
lib/Moose/Autobox/Number.pm
lib/Moose/Autobox/Ref.pm
lib/Moose/Autobox/Scalar.pm
lib/Moose/Autobox/String.pm
lib/Moose/Autobox/Undef.pm
lib/Moose/Autobox/Value.pm

diff --git a/Changes b/Changes
index 7dc388a..38f118b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Perl extension Moose::Autobox
 
+0.11
+    - add each_n_values to Indexed (rafl and rjbs)
     - add first and last to Scalar and Array (t0m)
 
 0.10
index 7c49238..947365a 100644 (file)
@@ -8,7 +8,7 @@ use Carp        qw(confess);
 use Scalar::Util ();
 use Moose::Util  ();
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 use base 'autobox';
 
index fb34f76..40e36a0 100644 (file)
@@ -3,7 +3,7 @@ use Moose::Role 'with';
 use Perl6::Junction;
 use Moose::Autobox;
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::List',
index fac9e43..df7f1f0 100644 (file)
@@ -2,7 +2,7 @@ package Moose::Autobox::Code;
 use Moose::Role 'with';
 use Moose::Autobox;
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Ref';
 
index 1bbb3a3..75ce024 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Defined;
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Item';
             
index ddf8c63..5d030f9 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Hash;
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::Indexed';
index 3c80830..1dbe55a 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Indexed;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 requires 'at';
 requires 'put';
index 57cfd8f..046d3aa 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Item;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 requires 'defined';
 
index 715d5de..06ea187 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Autobox::List;
 use Moose::Role 'with', 'requires';
 use Moose::Autobox;
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Value';
 
index 5e39592..e367dd2 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Number;
 use Moose::Role;
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Value';
 
index 61cfffe..0e4f78c 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Ref;     
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Defined';
 
index 6ebb9fe..5f2b66f 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Scalar;
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::String',
      'Moose::Autobox::Number';     
index 553131a..d814c03 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::String;
 use Moose::Role;
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Value';
 
index ab317bd..281a5a2 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Undef;
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Item';
             
index 7893038..e0160cc 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Value;     
 use Moose::Role 'with';
 
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 
 with 'Moose::Autobox::Defined';