bump versions, make them match
Ricardo SIGNES [Thu, 23 Oct 2008 14:43:08 +0000 (14:43 +0000)]
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 80956bd..dbcd928 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 Revision history for Perl extension Moose::Autobox
 
+0.09 Thu. Oct 23, 2008
     - update Perl6::Junction dependency and support new version
 
 0.08 Mon. May 12, 2008
index 934b7a3..5d4b0f1 100644 (file)
@@ -8,7 +8,7 @@ use Carp        qw(confess);
 use Scalar::Util ();
 use Moose::Util  ();
 
-our $VERSION = '0.08';
+our $VERSION = '0.09';
 
 use base 'autobox';
 
index 92b919b..74a45d2 100644 (file)
@@ -3,7 +3,7 @@ use Moose::Role 'with';
 use Perl6::Junction;
 use Moose::Autobox;
 
-our $VERSION = '0.03';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::List',
index ef7fb97..a809ccc 100644 (file)
@@ -2,7 +2,7 @@ package Moose::Autobox::Code;
 use Moose::Role 'with';
 use Moose::Autobox;
 
-our $VERSION = '0.02';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Ref';
 
index e368cf3..ac8fa95 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Defined;
 use Moose::Role 'with';
 
-our $VERSION = '0.01';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Item';
             
@@ -64,4 +64,4 @@ L<http://www.iinteractive.com>
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
-=cut
\ No newline at end of file
+=cut
index de8f2bb..84b8c31 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Hash;
 use Moose::Role 'with';
 
-our $VERSION = '0.03';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::Indexed';
index 5efd461..551a28c 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Indexed;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.02';
+our $VERSION = '0.09';
 
 requires 'at';
 requires 'put';
index 2772c77..1b4e20c 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Item;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.02';
+our $VERSION = '0.09';
 
 requires 'defined';
 
index 5810ce5..08a96f3 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Autobox::List;
 use Moose::Role 'with', 'requires';
 use Moose::Autobox;
 
-our $VERSION = '0.02';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Value';
 
index 2c2f1a9..132c6f3 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Number;
 use Moose::Role;
 
-our $VERSION = '0.01';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Value';
      
@@ -46,4 +46,4 @@ L<http://www.iinteractive.com>
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
-=cut
\ No newline at end of file
+=cut
index 77570c3..69fdb88 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Ref;     
 use Moose::Role 'with';
 
-our $VERSION = '0.03';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Defined';
 
index 126bf3b..11a6070 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Scalar;
 use Moose::Role 'with';
 
-our $VERSION = '0.01';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::String',
      'Moose::Autobox::Number';     
index d8f34ac..cbd7321 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::String;
 use Moose::Role;
 
-our $VERSION = '0.02';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Value';
 
index 9fa82f0..08e73d3 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Undef;
 use Moose::Role 'with';
 
-our $VERSION = '0.01';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Item';
             
@@ -61,4 +61,4 @@ L<http://www.iinteractive.com>
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
-=cut
\ No newline at end of file
+=cut
index 0a343b8..cc4d36a 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Value;     
 use Moose::Role 'with';
 
-our $VERSION = '0.01';
+our $VERSION = '0.09';
 
 with 'Moose::Autobox::Defined';