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
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';
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';
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';