From: Stevan Little <stevan.little@iinteractive.com>
Date: Sat, 24 Nov 2007 16:54:54 +0000 (+0000)
Subject: 0.05
X-Git-Tag: 0.18_01~54
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f31cc28d3f47fac6ba2509868ff311e9cf4d11a;p=gitmo%2FMooseX-AttributeHelpers.git

0.05
---

diff --git a/Build.PL b/Build.PL
index b66ee23..760febb 100644
--- 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 => {
     },
diff --git a/ChangeLog b/ChangeLog
index d8c9bbe..843e403 100644
--- 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
--- 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
diff --git a/lib/MooseX/AttributeHelpers.pm b/lib/MooseX/AttributeHelpers.pm
index 15cac8e..65bd2c4 100644
--- a/lib/MooseX/AttributeHelpers.pm
+++ b/lib/MooseX/AttributeHelpers.pm
@@ -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;
diff --git a/lib/MooseX/AttributeHelpers/Collection/Array.pm b/lib/MooseX/AttributeHelpers/Collection/Array.pm
index f8c9411..f2d2107 100644
--- a/lib/MooseX/AttributeHelpers/Collection/Array.pm
+++ b/lib/MooseX/AttributeHelpers/Collection/Array.pm
@@ -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' }
 
 
diff --git a/lib/MooseX/AttributeHelpers/Collection/Bag.pm b/lib/MooseX/AttributeHelpers/Collection/Bag.pm
index 3b1afd9..8cf28be 100644
--- a/lib/MooseX/AttributeHelpers/Collection/Bag.pm
+++ b/lib/MooseX/AttributeHelpers/Collection/Bag.pm
@@ -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;
diff --git a/lib/MooseX/AttributeHelpers/Collection/Hash.pm b/lib/MooseX/AttributeHelpers/Collection/Hash.pm
index 6715a7d..d049fa2 100644
--- a/lib/MooseX/AttributeHelpers/Collection/Hash.pm
+++ b/lib/MooseX/AttributeHelpers/Collection/Hash.pm
@@ -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' }
 
 
diff --git a/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm b/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm
index 32a02af..23a046f 100644
--- a/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm
+++ b/lib/MooseX/AttributeHelpers/Collection/ImmutableHash.pm
@@ -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' }
 
 
diff --git a/lib/MooseX/AttributeHelpers/Collection/List.pm b/lib/MooseX/AttributeHelpers/Collection/List.pm
index 3d23a8a..d6a6539 100644
--- a/lib/MooseX/AttributeHelpers/Collection/List.pm
+++ b/lib/MooseX/AttributeHelpers/Collection/List.pm
@@ -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' }
 
 
diff --git a/lib/MooseX/AttributeHelpers/Counter.pm b/lib/MooseX/AttributeHelpers/Counter.pm
index 48b0e21..9f5b13d 100644
--- a/lib/MooseX/AttributeHelpers/Counter.pm
+++ b/lib/MooseX/AttributeHelpers/Counter.pm
@@ -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;
diff --git a/lib/MooseX/AttributeHelpers/Number.pm b/lib/MooseX/AttributeHelpers/Number.pm
index adbc5e0..e9c53c0 100644
--- a/lib/MooseX/AttributeHelpers/Number.pm
+++ b/lib/MooseX/AttributeHelpers/Number.pm
@@ -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;