From: Shawn M Moore Date: Fri, 27 Jun 2008 03:16:05 +0000 (+0000) Subject: Bump everything to 0.11 X-Git-Tag: 0.16~45 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1ccccb1f899425f1da631506c0a8370df9419e5c;p=gitmo%2FMooseX-AttributeHelpers.git Bump everything to 0.11 --- diff --git a/ChangeLog b/ChangeLog index 182c7fa..34c7853 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ Revision history for Perl extension MooseX-AttributeHelpers - add the ability to curry method providers (thanks to jasonmay) - Counter: add set and allow inc and dec to accept args - add Bool as an attribute helper (thanks to jasonmay) + - bump all modules to version 0.11 for consistency (sartak) 0.09 Sat. May 24, 2008 - remove Module::Build in favor of Module::Install diff --git a/lib/MooseX/AttributeHelpers/Base.pm b/lib/MooseX/AttributeHelpers/Base.pm index 201bbcb..82282f1 100644 --- a/lib/MooseX/AttributeHelpers/Base.pm +++ b/lib/MooseX/AttributeHelpers/Base.pm @@ -3,7 +3,7 @@ package MooseX::AttributeHelpers::Base; use Moose; use Moose::Util::TypeConstraints; -our $VERSION = '0.04'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; extends 'Moose::Meta::Attribute'; diff --git a/lib/MooseX/AttributeHelpers/Bool.pm b/lib/MooseX/AttributeHelpers/Bool.pm index ed94067..7cda704 100644 --- a/lib/MooseX/AttributeHelpers/Bool.pm +++ b/lib/MooseX/AttributeHelpers/Bool.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Bool; use Moose; use MooseX::AttributeHelpers::MethodProvider::Bool; -our $VERSION = '0.02'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; extends 'MooseX::AttributeHelpers::Base'; diff --git a/lib/MooseX/AttributeHelpers/Collection.pm b/lib/MooseX/AttributeHelpers/Collection.pm index 2edd4a7..f5365d7 100644 --- a/lib/MooseX/AttributeHelpers/Collection.pm +++ b/lib/MooseX/AttributeHelpers/Collection.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Collection; use Moose; -our $VERSION = '0.03'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; extends 'MooseX::AttributeHelpers::Base'; diff --git a/lib/MooseX/AttributeHelpers/Collection/Array.pm b/lib/MooseX/AttributeHelpers/Collection/Array.pm index 7c2acf7..457921c 100644 --- a/lib/MooseX/AttributeHelpers/Collection/Array.pm +++ b/lib/MooseX/AttributeHelpers/Collection/Array.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Collection::Array; use Moose; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::Array; diff --git a/lib/MooseX/AttributeHelpers/Collection/Bag.pm b/lib/MooseX/AttributeHelpers/Collection/Bag.pm index 48bb388..607b1fd 100644 --- a/lib/MooseX/AttributeHelpers/Collection/Bag.pm +++ b/lib/MooseX/AttributeHelpers/Collection/Bag.pm @@ -3,7 +3,7 @@ package MooseX::AttributeHelpers::Collection::Bag; use Moose; use Moose::Util::TypeConstraints; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::Bag; @@ -107,4 +107,4 @@ L 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 diff --git a/lib/MooseX/AttributeHelpers/Collection/Hash.pm b/lib/MooseX/AttributeHelpers/Collection/Hash.pm index eddb3e4..282f328 100644 --- a/lib/MooseX/AttributeHelpers/Collection/Hash.pm +++ b/lib/MooseX/AttributeHelpers/Collection/Hash.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Collection::Hash; use Moose; -our $VERSION = '0.02'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::Hash; @@ -92,4 +92,4 @@ L 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 diff --git a/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm b/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm index a0c7566..5b53e12 100644 --- a/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm +++ b/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Collection::ImmutableHash; use Moose; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::ImmutableHash; @@ -90,4 +90,4 @@ L 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 diff --git a/lib/MooseX/AttributeHelpers/Collection/List.pm b/lib/MooseX/AttributeHelpers/Collection/List.pm index d32dcd4..f0b70d6 100644 --- a/lib/MooseX/AttributeHelpers/Collection/List.pm +++ b/lib/MooseX/AttributeHelpers/Collection/List.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Collection::List; use Moose; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::List; diff --git a/lib/MooseX/AttributeHelpers/Counter.pm b/lib/MooseX/AttributeHelpers/Counter.pm index 7efbb51..349577d 100644 --- a/lib/MooseX/AttributeHelpers/Counter.pm +++ b/lib/MooseX/AttributeHelpers/Counter.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::Counter; use Moose; -our $VERSION = '0.03'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::Counter; diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/Array.pm b/lib/MooseX/AttributeHelpers/MethodProvider/Array.pm index 3ea71b4..b4acb37 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/Array.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/Array.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::MethodProvider::Array; use Moose::Role; -our $VERSION = '0.05'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::AttributeHelpers::MethodProvider::List'; diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/Bag.pm b/lib/MooseX/AttributeHelpers/MethodProvider/Bag.pm index 2bc0daa..ae1db29 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/Bag.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/Bag.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::MethodProvider::Bag; use Moose::Role; -our $VERSION = '0.02'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::AttributeHelpers::MethodProvider::ImmutableHash'; diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/Bool.pm b/lib/MooseX/AttributeHelpers/MethodProvider/Bool.pm index 3d279f4..908aa95 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/Bool.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/Bool.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::MethodProvider::Bool; use Moose::Role; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub set : method { diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/Counter.pm b/lib/MooseX/AttributeHelpers/MethodProvider/Counter.pm index 84b978f..3a7706d 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/Counter.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/Counter.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::MethodProvider::Counter; use Moose::Role; -our $VERSION = '0.02'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub reset : method { diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/Hash.pm b/lib/MooseX/AttributeHelpers/MethodProvider/Hash.pm index 6e08454..5b61617 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/Hash.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/Hash.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::MethodProvider::Hash; use Moose::Role; -our $VERSION = '0.04'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::AttributeHelpers::MethodProvider::ImmutableHash'; diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/ImmutableHash.pm b/lib/MooseX/AttributeHelpers/MethodProvider/ImmutableHash.pm index 1cf5123..e79e305 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/ImmutableHash.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/ImmutableHash.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::MethodProvider::ImmutableHash; use Moose::Role; -our $VERSION = '0.03'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub exists : method { diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/List.pm b/lib/MooseX/AttributeHelpers/MethodProvider/List.pm index c3ffff3..99a1e17 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/List.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/List.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::MethodProvider::List; use Moose::Role; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub count : method { diff --git a/lib/MooseX/AttributeHelpers/MethodProvider/String.pm b/lib/MooseX/AttributeHelpers/MethodProvider/String.pm index 4e4ee82..9719b89 100644 --- a/lib/MooseX/AttributeHelpers/MethodProvider/String.pm +++ b/lib/MooseX/AttributeHelpers/MethodProvider/String.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::MethodProvider::String; use Moose::Role; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; sub append : method { diff --git a/lib/MooseX/AttributeHelpers/Number.pm b/lib/MooseX/AttributeHelpers/Number.pm index 33bc393..7e3b60e 100644 --- a/lib/MooseX/AttributeHelpers/Number.pm +++ b/lib/MooseX/AttributeHelpers/Number.pm @@ -1,7 +1,7 @@ package MooseX::AttributeHelpers::Number; use Moose; -our $VERSION = '0.02'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; extends 'MooseX::AttributeHelpers::Base'; diff --git a/lib/MooseX/AttributeHelpers/String.pm b/lib/MooseX/AttributeHelpers/String.pm index 3290e2d..2f27008 100644 --- a/lib/MooseX/AttributeHelpers/String.pm +++ b/lib/MooseX/AttributeHelpers/String.pm @@ -2,7 +2,7 @@ package MooseX::AttributeHelpers::String; use Moose; -our $VERSION = '0.01'; +our $VERSION = '0.11'; our $AUTHORITY = 'cpan:STEVAN'; use MooseX::AttributeHelpers::MethodProvider::String;