prep next release 0.13
Ricardo Signes [Wed, 29 Aug 2012 13:57:26 +0000 (09:57 -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 b8fecaa..0b24e22 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Moose::Autobox
 
+0.13  Wed Aug 29 09:56:58 EDT 2012
+    - switch from Perl6::Junction to Syntax::Keyword::Junction (rjbs)
+
 0.12  Tue. Mar 20, 2012
     - replace "use base" with "use parent"
 
index 1555c25..c8b6d14 100644 (file)
@@ -8,7 +8,7 @@ use Carp        qw(confess);
 use Scalar::Util ();
 use Moose::Util  ();
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 use parent 'autobox';
 
index 4e7abd7..a334ce8 100644 (file)
@@ -7,7 +7,7 @@ use Syntax::Keyword::Junction::Any ();
 use Syntax::Keyword::Junction::None ();
 use Syntax::Keyword::Junction::One ();
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::List',
index 96cb765..14c07a3 100644 (file)
@@ -2,7 +2,7 @@ package Moose::Autobox::Code;
 use Moose::Role 'with';
 use Moose::Autobox;
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Ref';
 
index e832e57..828bdb0 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Defined;
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Item';
             
index 9ff1b24..2ec40e3 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Hash;
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::Indexed';
index f172914..f4a41e4 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Indexed;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 requires 'at';
 requires 'put';
index 36724d4..f8b7be2 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Item;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 requires 'defined';
 
index 406f506..10de3ae 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Autobox::List;
 use Moose::Role 'with', 'requires';
 use Moose::Autobox;
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Value';
 
index 5c6e5ee..1dcbb08 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Number;
 use Moose::Role;
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Value';
 
index d98310d..b311650 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Ref;     
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Defined';
 
index ff2379a..4a0d05c 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Scalar;
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::String',
      'Moose::Autobox::Number';     
index 25781db..db64fe4 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::String;
 use Moose::Role;
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Value';
 
index adcf474..57a526b 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Undef;
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Item';
             
index 9a3119d..d6e418d 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Value;     
 use Moose::Role 'with';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 with 'Moose::Autobox::Defined';