0.05
Stevan Little [Sat, 24 Nov 2007 16:54:54 +0000 (16:54 +0000)]
Build.PL
ChangeLog
README
lib/MooseX/AttributeHelpers.pm
lib/MooseX/AttributeHelpers/Collection/Array.pm
lib/MooseX/AttributeHelpers/Collection/Bag.pm
lib/MooseX/AttributeHelpers/Collection/Hash.pm
lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm
lib/MooseX/AttributeHelpers/Collection/List.pm
lib/MooseX/AttributeHelpers/Counter.pm
lib/MooseX/AttributeHelpers/Number.pm

index b66ee23..760febb 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -6,7 +6,8 @@ my $build = Module::Build->new(
     module_name => 'MooseX::AttributeHelpers',
     license => 'perl',
     requires => {   
-        'Moose' => '0.30',
+        'Class::MOP' => '0.47',
+        'Moose'      => '0.30',
     },
     optional => {
     },
index d8c9bbe..843e403 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 Revision history for Perl extension MooseX-AttributeHelpers
 
+0.05 Sat. Nov. 23, 2007
+    - update Class::MOP dependency
+    - hide the Moose::Meta::Attribute::Custom::* package 
+      declarations from search.cpan.org (when did they change
+      things to start seeing these?? *sigh*)
+
 0.04 Fri. Nov. 23, 2007
     * MooseX::AttributeHelpers::Base
       - changing this to use the new Class::MOP::Attribute
diff --git a/README b/README
index 133b3b8..ea4ebfa 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-MooseX::AttributeHelpers version 0.04
+MooseX::AttributeHelpers version 0.05
 ===========================
 
 See the individual module documentation for more information
index 15cac8e..65bd2c4 100644 (file)
@@ -1,7 +1,7 @@
 
 package MooseX::AttributeHelpers;
 
-our $VERSION   = '0.04';
+our $VERSION   = '0.05';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use MooseX::AttributeHelpers::Meta::Method::Provided;
index f8c9411..f2d2107 100644 (file)
@@ -18,7 +18,8 @@ sub helper_type { 'ArrayRef' }
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::Array;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Collection::Array;
 sub register_implementation { 'MooseX::AttributeHelpers::Collection::Array' }
 
 
index 3b1afd9..8cf28be 100644 (file)
@@ -33,7 +33,8 @@ no Moose;
 no Moose::Util::TypeConstraints;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::Bag;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Collection::Bag;
 sub register_implementation { 'MooseX::AttributeHelpers::Collection::Bag' }
 
 1;
index 6715a7d..d049fa2 100644 (file)
@@ -18,7 +18,8 @@ sub helper_type { 'HashRef' }
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::Hash;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Collection::Hash;
 sub register_implementation { 'MooseX::AttributeHelpers::Collection::Hash' }
 
 
index 32a02af..23a046f 100644 (file)
@@ -18,7 +18,8 @@ sub helper_type { 'HashRef' }
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::ImmutableHash;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Collection::ImmutableHash;
 sub register_implementation { 'MooseX::AttributeHelpers::Collection::ImmutableHash' }
 
 
index 3d23a8a..d6a6539 100644 (file)
@@ -18,7 +18,8 @@ sub helper_type { 'ArrayRef' }
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Collection::List;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Collection::List;
 sub register_implementation { 'MooseX::AttributeHelpers::Collection::List' }
 
 
index 48b0e21..9f5b13d 100644 (file)
@@ -44,7 +44,8 @@ after 'check_provides_values' => sub {
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Counter;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Counter;
 sub register_implementation { 'MooseX::AttributeHelpers::Counter' }
 
 1;
index adbc5e0..e9c53c0 100644 (file)
@@ -52,7 +52,8 @@ has '+method_constructors' => (
 no Moose;
 
 # register the alias ...
-package Moose::Meta::Attribute::Custom::Number;
+package # hide me from search.cpan.org
+    Moose::Meta::Attribute::Custom::Number;
 sub register_implementation { 'MooseX::AttributeHelpers::Number' }
 
 1;