Merge branch 'stable'
Dave Rolsky [Wed, 29 Jul 2009 21:48:57 +0000 (16:48 -0500)]
Conflicts:
Changes

1  2 
Changes
README
lib/Class/MOP.pm
lib/Class/MOP/Class.pm
lib/Class/MOP/Method.pm
lib/Class/MOP/Package.pm

diff --cc Changes
+++ b/Changes
@@@ -1,20 -1,9 +1,20 @@@
  Revision history for Perl extension Class-MOP.
  
- 0.91
++0.92
 +    * Class::MOP::Class
 +    * Class::MOP::Package
 +      - Move get_method_map and its various scaffolding into
 +        Package. (hdp)
 +
 +    * Class::MOP::Method
 +      - Allow Class::MOP::Method->wrap to take a Class::MOP::Method
 +        object as the first argument, rather than just a
 +        coderef. (doy)
 +
+ 0.91 Wed Jul 29, 2009
      * Class::MOP::Method::Wrapped
-       - Fixing variable usage issues with the patch from previous
-         version, not properly using lexicals in the for
-         loops. (stevan)
+       - Fixing variable usage issues with the patch from previous version,
+         not properly using lexicals in the for loops. (stevan)
  
  0.90 Tue Jul 21, 2009
      Japan Perl Association has sponsored Goro Fuji to improve startup
diff --cc README
Simple merge
Simple merge
@@@ -11,10 -11,10 +11,10 @@@ use Class::MOP::Method::Constructor
  
  use Carp         'confess';
  use Scalar::Util 'blessed', 'reftype', 'weaken';
 -use Sub::Name 'subname';
 +use Sub::Name    'subname';
  use Devel::GlobalDestruction 'in_global_destruction';
  
- our $VERSION   = '0.90';
+ our $VERSION   = '0.91';
  $VERSION = eval $VERSION;
  our $AUTHORITY = 'cpan:STEVAN';
  
@@@ -5,9 -5,9 +5,9 @@@ use strict
  use warnings;
  
  use Carp         'confess';
 -use Scalar::Util 'weaken', 'reftype';
 +use Scalar::Util 'weaken', 'reftype', 'blessed';
  
- our $VERSION   = '0.90';
+ our $VERSION   = '0.91';
  $VERSION = eval $VERSION;
  our $AUTHORITY = 'cpan:STEVAN';
  
@@@ -6,9 -6,8 +6,9 @@@ use warnings
  
  use Scalar::Util 'blessed', 'reftype';
  use Carp         'confess';
 +use Sub::Name    'subname';
  
- our $VERSION   = '0.90';
+ our $VERSION   = '0.91';
  $VERSION = eval $VERSION;
  our $AUTHORITY = 'cpan:STEVAN';