From: Ricardo Signes Date: Mon, 28 Oct 2013 01:59:37 +0000 (-0400) Subject: bump version X-Git-Tag: 0.14~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5efb68850fc9b03ac65edb4cc3debc14d1050bdd;p=gitmo%2FMoose-Autobox.git bump version --- diff --git a/Changes b/Changes index 0b24e22..763f623 100644 --- 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 ;) - + diff --git a/lib/Moose/Autobox.pm b/lib/Moose/Autobox.pm index 6bbff3a..2b268e6 100644 --- a/lib/Moose/Autobox.pm +++ b/lib/Moose/Autobox.pm @@ -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'; diff --git a/lib/Moose/Autobox/Array.pm b/lib/Moose/Autobox/Array.pm index 70990a8..6268985 100644 --- a/lib/Moose/Autobox/Array.pm +++ b/lib/Moose/Autobox/Array.pm @@ -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', diff --git a/lib/Moose/Autobox/Code.pm b/lib/Moose/Autobox/Code.pm index 14c07a3..217ae70 100644 --- a/lib/Moose/Autobox/Code.pm +++ b/lib/Moose/Autobox/Code.pm @@ -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'; diff --git a/lib/Moose/Autobox/Defined.pm b/lib/Moose/Autobox/Defined.pm index 828bdb0..c2f1e33 100644 --- a/lib/Moose/Autobox/Defined.pm +++ b/lib/Moose/Autobox/Defined.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Defined; use Moose::Role 'with'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Item'; diff --git a/lib/Moose/Autobox/Hash.pm b/lib/Moose/Autobox/Hash.pm index 2ec40e3..5dc62c2 100644 --- a/lib/Moose/Autobox/Hash.pm +++ b/lib/Moose/Autobox/Hash.pm @@ -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'; diff --git a/lib/Moose/Autobox/Indexed.pm b/lib/Moose/Autobox/Indexed.pm index f4a41e4..5a882ec 100644 --- a/lib/Moose/Autobox/Indexed.pm +++ b/lib/Moose/Autobox/Indexed.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Indexed; use Moose::Role 'requires'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; requires 'at'; requires 'put'; diff --git a/lib/Moose/Autobox/Item.pm b/lib/Moose/Autobox/Item.pm index f8b7be2..8a38212 100644 --- a/lib/Moose/Autobox/Item.pm +++ b/lib/Moose/Autobox/Item.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Item; use Moose::Role 'requires'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; requires 'defined'; diff --git a/lib/Moose/Autobox/List.pm b/lib/Moose/Autobox/List.pm index 10de3ae..c3ad24a 100644 --- a/lib/Moose/Autobox/List.pm +++ b/lib/Moose/Autobox/List.pm @@ -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'; diff --git a/lib/Moose/Autobox/Number.pm b/lib/Moose/Autobox/Number.pm index 1dcbb08..db5aadb 100644 --- a/lib/Moose/Autobox/Number.pm +++ b/lib/Moose/Autobox/Number.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Number; use Moose::Role; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Value'; diff --git a/lib/Moose/Autobox/Ref.pm b/lib/Moose/Autobox/Ref.pm index b311650..065d97a 100644 --- a/lib/Moose/Autobox/Ref.pm +++ b/lib/Moose/Autobox/Ref.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Ref; use Moose::Role 'with'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Defined'; diff --git a/lib/Moose/Autobox/Scalar.pm b/lib/Moose/Autobox/Scalar.pm index 4a0d05c..44d11fe 100644 --- a/lib/Moose/Autobox/Scalar.pm +++ b/lib/Moose/Autobox/Scalar.pm @@ -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'; diff --git a/lib/Moose/Autobox/String.pm b/lib/Moose/Autobox/String.pm index 722f0b1..61733a4 100644 --- a/lib/Moose/Autobox/String.pm +++ b/lib/Moose/Autobox/String.pm @@ -1,7 +1,7 @@ package Moose::Autobox::String; use Moose::Role; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Value'; diff --git a/lib/Moose/Autobox/Undef.pm b/lib/Moose/Autobox/Undef.pm index 57a526b..5868e9a 100644 --- a/lib/Moose/Autobox/Undef.pm +++ b/lib/Moose/Autobox/Undef.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Undef; use Moose::Role 'with'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Item'; diff --git a/lib/Moose/Autobox/Value.pm b/lib/Moose/Autobox/Value.pm index d6e418d..574c19d 100644 --- a/lib/Moose/Autobox/Value.pm +++ b/lib/Moose/Autobox/Value.pm @@ -1,7 +1,7 @@ package Moose::Autobox::Value; use Moose::Role 'with'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; with 'Moose::Autobox::Defined';