bump version
Ricardo Signes [Mon, 28 Oct 2013 01:59:37 +0000 (21:59 -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 0b24e22..763f623 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Moose::Autobox
 
+0.14  Sun Oct 27 21:59:43 EDT 2013
+    - typo fixes (dsteinbrunner)
+    - repackage to drop MYMETA files
+    - stop using 'use_ok' in tests
+
 0.13  Wed Aug 29 09:56:58 EDT 2012
     - switch from Perl6::Junction to Syntax::Keyword::Junction (rjbs)
 
@@ -30,25 +35,25 @@ Revision history for Perl extension Moose::Autobox
     * Moose::Autobox
       - added documentation about how to extend the autoboxed
         types (RT #34315)
-    
+
     * Moose::Autobox::Hash
       Moose::Autobox::Indexed
       - added support for slice and hslice (jrockway)
         - added tests for this
 
 0.06 Tues. Jan. 22, 2008
-    ~~ updated copyright dates & some docs ~~   
+    ~~ updated copyright dates & some docs ~~
 
     * Moose::Autobox
       - fixed role application code to follow the new
         Moose::Util based API
-        
+
     - upped the Moose version dependency
-    - upped the autobox version dependency 
+    - upped the autobox version dependency
 
 0.05 Sun. Aug. 5, 2007
     * Moose::Autobox
-      - fixed loading approach so that Moose::Object doesn't end 
+      - fixed loading approach so that Moose::Object doesn't end
         up in isa (thanks to mst)
 
 0.04 Thurs. May 31, 2007
@@ -70,11 +75,11 @@ Revision history for Perl extension Moose::Autobox
 
 0.03 Thurs. Aug 17, 2006
 
-    * Moose::Autobox 
-      - we now inherit from autobox, now we don't have to 
-        do that ugly eval thing or manually load autobox  
+    * Moose::Autobox
+      - we now inherit from autobox, now we don't have to
+        do that ugly eval thing or manually load autobox
         when we want to use this module.
-      - added &mixin_additional_role to allow mixing in of 
+      - added &mixin_additional_role to allow mixing in of
         additional functionality (see examples/unit/*)
 
     * Moose::Autobox::Code
@@ -84,19 +89,19 @@ Revision history for Perl extension Moose::Autobox
       - ported from the Pugs examples/units directory
 
 0.02 Sat. June 24, 2006
-    - fixed Moose::Autobox so that PAUSE won't try to 
+    - fixed Moose::Autobox so that PAUSE won't try to
       index SCALAR, ARRAY, HASH and CODE.
-      
-    - added examples/ directory 
+
+    - added examples/ directory
       - ported tic-tac-toe from the Pugs examples
-    
+
     * Moose::Autobox::Ref
       - added &dump method which will use Data::Dumper
         to return a dumped representation of the ref
-      
+
     * Moose::Autobox::Array
       - added Junctions support with Perl6::Junction
 
 0.01 Fri. June 9, 2006
     - Autoboxing, all the cool kids are doing it ;)
-    
+
index 6bbff3a..2b268e6 100644 (file)
@@ -8,7 +8,7 @@ use Carp        qw(confess);
 use Scalar::Util ();
 use Moose::Util  ();
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 use parent 'autobox';
 
index 70990a8..6268985 100644 (file)
@@ -7,7 +7,7 @@ use Syntax::Keyword::Junction::Any ();
 use Syntax::Keyword::Junction::None ();
 use Syntax::Keyword::Junction::One ();
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::List',
index 14c07a3..217ae70 100644 (file)
@@ -2,7 +2,7 @@ package Moose::Autobox::Code;
 use Moose::Role 'with';
 use Moose::Autobox;
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Ref';
 
index 828bdb0..c2f1e33 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Defined;
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Item';
             
index 2ec40e3..5dc62c2 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Hash;
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::Indexed';
index f4a41e4..5a882ec 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Indexed;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 requires 'at';
 requires 'put';
index f8b7be2..8a38212 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Item;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 requires 'defined';
 
index 10de3ae..c3ad24a 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Autobox::List;
 use Moose::Role 'with', 'requires';
 use Moose::Autobox;
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Value';
 
index 1dcbb08..db5aadb 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Number;
 use Moose::Role;
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Value';
 
index b311650..065d97a 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Ref;     
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Defined';
 
index 4a0d05c..44d11fe 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Scalar;
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::String',
      'Moose::Autobox::Number';     
index 722f0b1..61733a4 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::String;
 use Moose::Role;
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Value';
 
index 57a526b..5868e9a 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Undef;
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Item';
             
index d6e418d..574c19d 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Value;     
 use Moose::Role 'with';
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 with 'Moose::Autobox::Defined';