Revision history for Perl extension Class-MOP.
-0.38
+0.38 Thurs. May 31, 2007
~~ More documentation updates ~~
* Class::MOP::Package
- we now deal with stub methods properly
- added tests for this
- - fixed some tests failing on 5.9.5
+ - fixed some tests failing on 5.9.5 (thanks blblack)
* Class::MOP::Attribute
- added get_read_method and get_write_method
- updated docs to explain this
* metaclass
- - load custom metaclasses automatically.
+ - load custom metaclasses automatically (thanks groditi)
- added tests for this behavior
0.37 Sat. March 10, 2007
Build.PL
Changes
-Makefile.PL
META.yml
+Makefile.PL
MANIFEST
MANIFEST.SKIP
README
t/016_class_errors_and_edge_cases.t
t/017_add_method_modifier.t
t/018_anon_class.t
+t/019_anon_class_keep_alive.t
t/020_attribute.t
t/021_attribute_errors_and_edge_cases.t
t/022_attribute_duplication.t
t/042_metaclass_incompatibility_dynamic.t
t/043_instance_metaclass_incompatibility.t
t/044_instance_metaclass_incompatibility_dynamic.t
+t/045_metaclass_loads_classes.t
t/050_scala_style_mixin_composition.t
t/060_instance.t
t/061_instance_inline.t
t/pod.t
t/pod_coverage.t
t/lib/BinaryTree.pm
+t/lib/MyMetaClass.pm
+t/lib/MyMetaClass/Attribute.pm
+t/lib/MyMetaClass/Instance.pm
+t/lib/MyMetaClass/Method.pm
use Sub::Name 'subname';
use B 'svref_2object';
-our $VERSION = '0.23';
+our $VERSION = '0.22';
our $AUTHORITY = 'cpan:STEVAN';
use base 'Class::MOP::Module';
use Carp 'confess';
use Scalar::Util 'blessed';
-our $VERSION = '0.03';
+our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';
use Class::MOP;