2ce532a41428cf15e1e2101a9992f756ea37013a
[gitmo/Class-MOP.git] / Changes
1 Revision history for Perl extension Class-MOP.
2
3 0.62 Wed June 18, 2008
4     - in is_class_loaded, recognize scalar references (as opposed to globs) in
5       the symbol table as methods (these are optimized constant subs)
6
7 0.61 Fri. June 13, 2008
8     - Okay, lets give this another try and see if PAUSE 
9       recognizes it correct this time.
10
11 0.60 Thurs. Jun 12, 2008
12     - Fixed a version number issue by bumping all modules
13       to 0.60.
14
15 0.59 Thurs. Jun 12, 2008
16     !! Several fixes resulting in yet another 25-30% speedup !!
17
18     * Class::MOP::Class
19       - now stores the instance of the instance 
20         metaclass to avoid needless recomputation
21         and deletes it when the cache is blown
22       - introduce methods to query Class::MOP::Class for 
23         the options used to make it immutable as well as
24         the proper immutable transformer. (groditi)        
25
26     * Class::MOP::Package
27       - {add, has, get, remove}_package_symbol all 
28         now accept a HASH ref argument as well as the
29         string. All internal usages now use the HASH
30         ref version.
31
32     * Class::MOP
33       - MOP.xs does sanity checks on the coderef 
34         to avoid a segfault
35       - is_class_loaded check now uses code that
36         was improved in Moose's ClassName type
37         check (Sartak)
38       - nonsensical (undef, empty, reference) class
39         names now throw a more direct error in
40         load_class (Sartak)
41         - tests for this and other aspects of
42           load_class (Sartak)
43     
44     * Class::MOP
45       Class::MOP::Class      
46       Class::MOP::Method
47       Class::MOP::Method::Wrapped
48       Class::MOP::Attribute
49       - switched usage of reftype to ref because 
50         it is much faster
51
52 0.58 Thurs. May 29, 2008
53     (late night release engineering)--
54     
55     - fixing the version is META.yml, no functional 
56       changes in this release
57
58 0.57 Wed. May 28, 2008
59     !! Several speedups resulting in 20-25% speedups !!
60     || (thanks to konobi, groditi, mst & CataMoose) !!
61
62     * Class::MOP::Class
63       - made get_method_map use list_all_package_symbols
64         instead of manually grabbing each symbol
65       - streamlining &initialize somewhat, since it gets
66         called so much
67         
68     * Class::MOP::Package
69       - made {get, has}_package_symbol not call 
70         &namespace so much 
71       - inlining a few calls to &name with 
72         direct HASH access key access
73       - added get_all_package_symbols to fetch 
74         a HASH of items based on a type filter
75         similar to list_all_package_symbols
76         - added tests for this
77
78     * Class::MOP::Method
79       Class::MOP::Method::Constructor
80       Class::MOP::Method::Generated
81       Class::MOP::Method::Accessor
82       - added more descriptive error message to help 
83         keep people from wasting time tracking an error
84         that is easily fixed by upgrading.
85
86     * Class::MOP::Immutable
87       - Don't inline a destructor unless the user actually
88         needs one
89         - added tests for this
90
91 0.56 Saturday, May 24, 2008
92     * Class::MOP
93       - we now get the &check_package_cache_flag
94         function from MRO::Compat
95       - All XS based functionality now has a 
96         Pure Perl alternative
97         - the CLASS_MOP_NO_XS environment variable
98           can now be used to force non-XS versions
99           to always be used
100
101     * Class::MOP::Attribute
102       - add has_read_method and has_write_method
103       - get_{read,write}_method_ref now wraps the
104         anon-sub ref in the method metaclass when
105         possible
106         - added tests for this
107
108     * Class::MOP::Immutable
109       - added the ability to "wrap" methods when
110         making the class immutable
111
112     * Class::MOP::Class
113       - now handling the edge case of ->meta->identifier
114         dying by wrapping add_package_symbol to specifically
115         allow for it to work.
116         - added tests for this
117
118     * Class::MOP::Attribute
119       Class::MOP::Class
120       Class::MOP::Immutable
121       - any time a method meta object is constructed
122         we make sure to pass the correct package and
123         method name information
124
125     * Class::MOP::Method
126       Class::MOP::Method::Wrapped
127       Class::MOP::Method::Generated
128       Class::MOP::Method::Accessor
129       Class::MOP::Method::Consructor
130       - the &wrap constructor method now requires that a 
131         'package_name' and 'name' attribute are passed. This 
132         is to help support the no-XS version, and will 
133         throw an error if these are not supplied.      
134       - all these classes are now bootstrapped properly
135         and now store the package_name and name attributes
136         correctly as well        
137
138     ~ Build.PL has been removed since the 
139       Module::Install support has been removed
140
141 0.55 Mon. April 28, 2008
142     - All classes now have proper C3 MRO support
143       - added MRO::Compat as a dependency to allow
144         for the C3 MRO support to Just Work in all
145         perl versions
146
147     * Class::MOP::Class
148       - rebless_instance now returns the instance
149         it has just blessed, this is mostly to
150         facilitate chaining
151       - set the attr correctly in rebless_instance
152         when it has no init_arg
153       - tweaked &linear_isa and &class_precedence_list
154         to support c3 classes.
155
156 0.54 Fri. March, 14, 2008
157     * Class::MOP
158       metaclass.pm
159       - making sure that load_class never gets
160         passed a value from @_ or $_ to squash
161         Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
162
163     * Class::MOP::Class
164       - make_{immutable,mutable} now return 1
165         (cause Sartak asked)
166       - improved error handling in ->create method
167       - rebless_instance now takes extra params which
168         will be used to populate values
169         - added tests for this
170
171     * Class::MOP::Object
172       - localizing the Data::Dumper configurations so
173         that it does not pollute others (RT #33509)
174
175     * Class::MOP::Class
176       Class::MOP::Package
177       Class::MOP::Module
178       Class::MOP::Method
179       Class::MOP::Attribute
180       - these classes no longer define their own ->meta,
181         but instead just inherit from Class::MOP::Object
182
183     * Class::MOP::Instance
184       Class::MOP::Immutable
185       - these classes now inherit from Class::MOP::Object
186
187     * t/
188       - fixed the filename length on several
189         test files so we install on VMS better
190         (RT #32295)
191       - fixed incorrect use of catdir when it
192         should be catfile (RT #32385)
193
194 0.53 Thurs. Feb. 14, 1008
195     ~~ several doc. fixes and updates ~~
196
197     * Class::MOP::Class
198       Class::MOP::Method::Constructor
199       Class::MOP::Attribute
200         - making init_arg accept an undefined value
201           to indicate that no constructor args can
202           be passed (thanks to nothingmuch)
203           - added tests for this
204         - added attribute initializer attribute (rjbs)
205
206     * Class::MOP.
207         - making this use the new init_arg => undef
208           feature instead of the silly hack from
209           before (thanks to nothingmuch)
210
211 0.52 Tues. Jan. 22, 2008
212     * Class::MOP::Class
213       - fixed bug in rebless_instance
214         (discovered by ash)
215
216     * Class::MOP::Method::Constructor
217       - removed assumptions about the existence of
218         a &meta method
219
220 0.51 Mon. Jan. 14, 2008
221     ~~~ some misc. doc. fixes ~~~
222     ~~ updated copyright dates ~~
223
224     * Class::MOP
225       - now sets the IS_RUNNING_ON_5_10
226         constant so that we can take advantage
227         of some of the nice bits of 5.10
228
229     * Class::MOP::Class
230       - uses the IS_RUNNING_ON_5_10 flag to
231         optimize the &linearized_isa method
232         and avoid the hack/check for circular
233         inheritence in &class_precedence_list
234       - added rebless_instance method (Sartak)
235         - added tests for this
236
237     * Class::MOP::Immutable
238       - the immutable class now keeps track of
239         the transformer which immutablized it
240
241     * Class::MOP::Instance
242       - added rebless_instance_structure method (Sartak)
243         - added tests for this
244
245 0.50 Fri. Dec. 21, 2007
246     * Class::MOP::Class
247       - fixed bug in immutable to make sure that
248         transformation arguments are saved
249         correctly (mst)
250         - added tests for this
251
252     * Class::MOP::Immutable
253       - fixed a bug (see above)
254
255     * Class::MOP::Attribute
256       - some doc updates
257
258 0.49 Fri. Dec. 14, 2007
259     !! Class::MOP now loads 2 x faster  !!
260     !! with XS speedups (thanks konobi) !!
261
262     * Class::MOP
263       - removed the dependency on B
264       - added two XS functions (thanks konobi)
265         - get_code_info($code) which replaces all
266           the B fiddling we were doing with
267           faster/leaner XS level fiddling
268         - check_package_cache_flag($pkg_name) which
269           returns the PL_sub_generation variable to
270           be used to help manage method caching.
271
272           NOTE:
273           In 5.10 or greater this will actually
274           use the mro::get_pkg_gen instead to give
275           even more accurate caching information.
276           blblack++ for that stuff :)
277
278     * Class::MOP::Class
279       - added the &subclasses method (thanks rlb)
280       - added the update_package_cache_flag and
281         reset_package_cache_flag which help keep
282         track of when we need to re-fetch the
283         method map.
284       - Several small improvements to take advantage
285         of the new method map caching features
286
287 0.48 Mon. Nov. 26, 2007
288     * Class::MOP::Attribute
289       - fixed get_read/write_method to handle the
290         HASH ref case, which makes the
291         get_read/write_method_ref handle it too.
292         - added more tests for this
293
294 0.47 Sat. Nov. 24, 2007
295     * Class::MOP::Attribute
296       - fixed misspelling in get_write_method_ref
297         - added more tests for this
298
299 0.46 Fri. Nov. 23, 2007
300     * Class::MOP::Class
301       - added the linearized_isa method instead of constantly
302         pruning duplicate classes (this will be even more
303         useful in the 5.10-compat version coming soon)
304
305     * Class::MOP::Attribute
306       - added the get_read_method_ref and get_write_method_ref
307         methods which allow you to retrieve a CODE ref which
308         can always be used to read or write an attribute.
309
310 0.45 Thurs. Nov. 13, 2007
311     * Class::MOP::Attribute
312       - Fix error message on confess (groditi)
313
314 0.44 Thurs. Nov. 13, 2007
315     - Apparently I didn't make dist correctly (groditi)
316
317 0.43 Thurs. Nov. 13, 2007
318     * Class::MOP
319       - Add support for the 'builder' attribute (groditi)
320
321     * Class::MOP::Class
322       - optimise metaclass-already-exists check in
323         construct_class_instance (groditi)
324       - duplicate check into initialize to save a
325         call through (groditi)
326
327     * Class::MOP::Attribute
328       - Add support for the 'builder' attribute (groditi)
329       - Make predicates check for the existence of a value, not whether
330         it is defined (groditi)
331
332     * Class::MOP::Instance
333       - Make predicates check for the existence of a value, not whether
334         it is defined (groditi)
335
336     * Class::MOP::Method::Accessor
337       - made this a subclass of Class::MOP::Method::Generated
338         - removed the relevant attributes
339
340     * Class::MOP::Method::Constructor
341       - fixed the cached values we had to be more sane
342       - made this a subclass of Class::MOP::Method::Generated
343       - fixed generated constructor so it properly handles
344         subclasses now.
345         - added tests for this
346       - added the option to allow for both inlined and
347         non-inlined constructors.
348       - Update inlined methods for builder and predicate changes (groditi)
349
350     * Class::MOP::Method::Generated
351       - added this class as an abstract base for the
352         Class::MOP::Method::{Constructor,Accessor} classes
353         - added tests for this
354
355     *t/
356       - Alter tests (005, 014 020, 021) for new builder addition (groditi)
357       - Tests for new predicate behavior (and corrections to old tests) (groditi)
358
359     *examples/
360       - Update ArrayRef based class example to work with predicate changes
361
362 0.42 Mon. July 16, 2007
363     !!! Horray for mst, he fixed it !!!
364
365     * Class::MOP::Package
366       - alter symbol table handling to deal with 5.8.x and 5.9.x
367
368     * t/
369       - Get rid of the crappy workaround from 0.40/41
370
371 0.41 Sun. July 15, 2007
372     * t/
373         Arghh!!! My TODO test didn't work, so I handle
374         it manually now so that people can use this
375         with 5.9.5/bleadperl without issue.
376
377 0.40 Tues, July 3, 2007
378     * t/
379       ~ marked a test in 003_methods.t as TODO
380         for perl 5.9.5 (this test is irrelvant to
381         the module functioning on 5.9.5 for the most
382         part anyway)
383
384 0.39 Mon. June 18, 2007
385     * Class::MOP::Immutable
386       - added make_metaclass_mutable + docs (groditi)
387       - removed unused variable
388       - added create_immutable_transformer
389         necessary for sane overloading of immutable behavior
390          - tests for this (groditi)
391
392     * Class::MOP::Class
393       - Immutability can now be undone,
394         added make_mutable + tests + docs (groditi)
395       - Massive changes to the way Immutable is done
396         for details see comments next to make_immutable
397         This fixes a bug where custom metaclasses broke
398         when made immutable. We are now keeping one immutable
399         metaclass instance per metaclass instead of just one
400         to prevent isa hierarchy corruption. Memory use will go
401         up, but I suspect it will be neglible.
402          - New tests added for this behavior.  (groditi)
403
404 0.38 Thurs. May 31, 2007
405     ~~ More documentation updates ~~
406
407     * Class::MOP::Package
408       - we now deal with stub methods properly
409         - added tests for this
410       - fixed some tests failing on 5.9.5 (thanks blblack)
411
412     * Class::MOP::Attribute
413       - added get_read_method and get_write_method
414         thanks to groditi for this code, tests
415         and docs.
416         - added tests and POD for this
417
418     * Class::MOP::Class
419       - fixed RT issue #27329, clone object now
420         handles undef values correctly.
421         - added tests for this
422       - Corrected anon-class handling so that they
423         will not get reaped when instances still
424         exist which need to reference them. This is
425         the correct behavior, hopefully this is an
426         obscure enough feature that there are not too
427         many work arounds out in the wild.
428         - added tests for this by groditi
429         - updated docs to explain this
430
431     * metaclass
432       - load custom metaclasses automatically (thanks groditi)
433         - added tests for this behavior
434
435 0.37 Sat. March 10, 2007
436     ~~ Many, many documentation updates ~~
437
438     * Class::MOP
439       - added &load_class and &is_class_loaded
440         - added tests and docs for these
441
442     * Class::MOP::Attribute
443       - default now checks the instance with defined to
444         avoid setting off bool-overloads (found by Carl Franks)
445
446 0.37_002
447     * /t
448       - bad name in a test, causing meaningless failuress.
449         No other changes.
450
451 0.37_001
452
453     ~~ GLOBAL CHANGES ~~
454     - All attribute names are now consistent and follow Perl 6
455       style (prefixed with the sigil, and ! as the twigil for
456       private attrs). This should not affect any code, unless
457       you broke encapsulation, in which case, it is your problem
458       anyway.
459
460     !! Class::MOP::Class::Immutable has been removed
461
462     * Class::MOP::Method::Constructor
463       - this has been moved out of Class::MOP::Class::Immutable
464         and is a proper subclass of Class::MOP::Method now.
465
466     * Class::MOP::Class
467       - this module now uses Class::MOP::Immutable for the
468         immutable transformation instead of
469         Class::MOP::Class::Immutable.
470
471     + Class::MOP::Immutable
472       - this module now controls the transformation from a mutable
473         to an immutable version of the class. Docs for this will
474         be coming eventually.
475
476
477 0.36 Sun. Nov. 5, 2006
478     * Class::MOP::Class
479       - added a few 'no warnings' lines to keep annoying
480         (and meaningless) warnings from chirping during
481         global destruction.
482
483     * Class::MOP
484       - some more bootstrapping is now done on the new
485         classes
486
487     * Class::MOP::Class::Immutable
488       *** API CHANGE ***
489       - constructor generation is now handled by
490         the Class::MOP::Method::Constructor class
491
492     * Class::MOP::Method::Constructor
493       - created this to handle constructor generation
494         in Class::MOP::Class::Immutable
495
496     * Class::MOP::Attribute
497       *** API CHANGE ***
498       - attributes now delegate to the
499         Class::MOP::Method::Accessor to generate
500         accessors
501
502     * Class::MOP::Method::Accessor
503       - all accessor generation functions from
504         Class::MOP::Attribute have been moved here
505
506 0.35 Sat. Sept. 30, 2006
507
508     * scripts/class_browser.pl
509       - initial prototype of a class browser, more
510         on this to come. Comments and patches are
511         very much welcome.
512
513     * Class::MOP
514       - All Class::MOP::* accessors are no longer
515         re-generated in the bootstrap, instead
516         they are aliased from the originals
517         - fixed tests to reflect
518       - added Class::MOP::Method (and its subclasses)
519         to the bootstrap
520         - adjusted tests for this
521       - added the Class::MOP::Instance attributes
522         to the bootstrap
523
524     * Class::MOP::Method
525       *** API CHANGE ***
526       - methods are no longer blessed CODE refs
527         but are actual objects which can be CODE-ified
528         - adjusted tests to compensate
529         - adjusted docs for this
530
531     * Class::MOP::Class
532       - changed how methods are dealt with to
533         encapsulate most of the work into the
534         &get_method_map method
535       - made several adjustments for the change
536         in Class::MOP::Method
537       - &add_attribute now checks if you are adding
538         a duplicate name, and properly removes the
539         old one before installing the new one
540         - added tests for this
541         - adjusted docs for this
542
543     * Class::MOP::Class::Immutable
544       - added caching of &get_method_map
545       - fixed issue with &get_package_symbol
546       - cleaned up the methods that die (patch by David Wheeler)
547
548     * Class::MOP::Package
549       - added filtering capabilities to
550         &list_all_package_symbols
551
552 0.34 Sat. Aug. 26, 2006
553     * Class::MOP::Class
554       - added the %:methods attribute, which like
555         the $:version and such just actually goes
556         to the symbol table to get it's stuff.
557         However, it makes the MOP more complete.
558      ** API CHANGE **
559       - The &create method now requires that all
560         but the package name now is passed in as
561         named parameters. See docs for more info.
562         - updated docs and tests for this
563
564     * Class::MOP::Object
565       - added &dump method to easily Data::Dumper
566         an object
567
568     * Class::MOP
569       - cleaned up the initialization of attributes
570         which do not store things in the instance
571       - added the %:methods attribute definition to
572         the bootstrap
573
574     ~ lots of misc. test cleanup
575
576 0.33 Sat. Aug. 19, 2006
577     * Class::MOP::Class
578       - moved the metaclass cache out of here
579         and it is now in Class::MOP itself.
580
581     * Class::MOP
582       - moved all the metaclass cache stuff here
583         - fixed all tests for this
584
585     * Class::MOP::Attribute
586       - reference values (other than CODE refs)
587         are no longer allowed for defaults
588         - added tests for this
589
590     * Class::MOP::Package
591       - fixed an issue with perl 5.8.1 and how it deals
592         with symbol tables. The namespace hash is now
593         always reloaded from the symbol table.
594
595     ~ lots of misc. documentation cleanup
596
597 0.32 Sat. Aug. 12, 2006
598     + added Class::MOP::Object so that the
599       metamodel is more complete (and closer
600       to what Perl 6 will probably be).
601
602     * Class::MOP::Package
603       - refactored entire class, this is now
604         the primary gateway between the metaclass
605         and the Perl 5 symbol table
606         - added many tests for this
607       - this class is now a subclass of
608         Class::MOP::Object
609         - added some tests to reflect this
610
611     * Class::MOP::Class
612       - refactored all symbol table access to
613         use Class::MOP::Package methods instead
614
615     * Class::MOP::Module
616       - adding the $:version attribute in the bootstrap
617         so that Module has a version as an attribute
618         - see comment in Class::MOP for details
619       - added the $:authority attribute to this module
620         as well as an &identifier method, to bring us
621         ever closer to Perl 6 goodness
622         - I have added $AUTHORITY to all the modules
623         - added tests for this
624
625     * Class::MOP::Instance
626       - added &deinitialize_slot for removing slots
627         from an instance
628         - added tests for this
629
630     * Class::MOP::Attribute
631       - added support for &deinitialize_slot for removing
632         slots from an instance
633         - added tests for this
634
635 0.31 Sat. July 15, 2006
636
637     * Class::MOP::Class
638       - added &find_method_by_name to locate a method
639         anywhere within the class hierarchy
640
641     * Class::MOP::Attribute
642       - added &set_value and &get_value for getting
643         the value of the attribute for a particular
644         instance.
645
646 0.30 Wed. July 5, 2006
647     ---------------------------------------
648     This is the first version of Class::MOP
649     to introduce the immutable features which
650     will be used for optimizating the MOP.
651     This support should still be considered
652     experimental, but moving towards stability.
653     ---------------------------------------
654
655     * Created Class::MOP::Class::Immutable
656
657     * Created the Class::MOP::Package and
658       Class::MOP::Module classes to more
659       closely conform to Perl 6's meta-model
660
661     * Class::MOP::Class
662       - now inherits from Class::MOP::Module
663       - several methods moved to ::Module and
664         ::Package and now inherited
665         - added tests for this
666
667     * Class::MOP::Instance
668       - added an is_inlinable method to allow other
669         classes to check before they attempt to optimize.
670       - added an inline_create_instance to inline
671         instance creation (of course)
672
673     ** API CHANGE **
674       - the Class::MOP::Class::*_package_variable
675         methods are all now methods of Class::MOP::Package
676         and called *_package_symbol instead. This is
677         because they are now more general purpose symbol
678         table manipulation methods.
679
680 0.29_02 Thurs. June 22, 2006
681     ++ DEVELOPER RELEASE ++
682     * Class::MOP::Class
683       - small change in &create so that it behaves
684         properly when inherited
685       - small fix to &clone_instance
686
687 0.29_01 Fri. May 12, 2006
688     ++ DEVELOPER RELEASE ++
689       - This release works in combination with
690         Moose 0.09_01, it is a developer release
691         because it introduces a new instance
692         sub-protocol and has not yet been
693         optimized.
694
695     * Class::MOP::Class
696       - anon-classes are now properly garbage collected
697         - added tests for this
698       - improved method modifier wrapping
699
700     * Class::MOP::Instance
701       - added new instance protocol
702         - added tests for this
703       - changed all relevant modules and examples
704         - Class::MOP::Class
705         - Class::MOP::Attribute
706         - examples/*
707
708     * metaclass
709       - you no longer need to specify the metaclass
710         itself, if it is not there, Class::MOP::Class
711         is just assumed
712         - updated tests for this
713
714     * examples/
715       - added ArrayBasedStorage example to show
716         instance storage using ARRAY refs instead of
717         HASH refs.
718         - added tests for this
719       - InsideOutClass is totally revised using the
720         new instance protocol
721         - added more tests for this
722
723 0.26 Mon. April 24, 2006
724     * Class::MOP::Class
725       - added find_attribute_by_name method
726         - added tests and docs for this
727       - some small optimizations
728
729     * Class::MOP::Attribute
730       - some small optimizations
731
732 0.25 Thurs. April 20, 2006
733     * Class::MOP::Class
734       - added create_anon_class for creating anonymous classes
735         - added tests for this
736       - added get_all_metaclasses, get_all_metaclass_names
737         and get_all_metaclass_instances method to allow
738         access to all the cached metaclass objects.
739       - attribute slot initialization is now the responsibility
740         of the attribute itself, and construct_instance now
741         delegates appropriately
742
743     * Class::MOP::Attribute
744       - attribute slot initialization is now the responsibility
745         of the attribute itself, so we added a method for it
746         called initialize_instance_slot
747
748     * examples/
749       - adjusted all the examples to use the new attribute
750         initialize_instance_slot method
751
752 0.24 Tues. April 11, 2006
753     * Class::MOP::Class
754       - cleaned up how the before/after/around method
755         modifiers get named with Sub::Name
756
757 0.23 Thurs. March 30, 2006
758         * Class::MOP::Class
759           - fixed the way attribute defaults are handled
760             during instance construction (bug found by chansen)
761
762         * Class::MOP::Attribute
763           - read-only accessors ('reader') will now die if
764             passed more than one argument (attempting to write
765             to them basically)
766               - added tests for this
767               - adjusted all /example files to comply
768
769 0.22 Mon. March 20, 2006
770     * Class::MOP::Class
771       - localized $@ in the *_package_variable functions
772         because otherwise, it does ugly things in Moose.
773           - added test case for this
774
775 0.21 Wed. March 15, 2006
776     * Class::MOP::Class
777       - fixed issue where metaclasses are reaped from
778         our cache in global destruction, and so are not
779         available in DESTORY calls
780
781 0.20 Thurs. March 2, 2006
782     - removed the dependency for Clone since
783       we no longer to deep-cloning by default.
784
785     * Class::MOP::Method
786       - added &package_name, &name and
787         &fully_qualified_name methods, some of
788         which were formerly private subs in
789         Class::MOP::Class
790
791     * Class::MOP::Method::Wrapped
792       - allows for a method to be wrapped with
793         before, after and around modifiers
794           - added tests and docs for this feature
795
796     * Class::MOP::Class
797       - improved &get_package_symbol
798           - &version and &superclasses now use it
799       - methods are now blessed into Class::MOP::Method
800         whenever possible
801       - added methods to install CLOS-style method modifiers
802          - &add_before_method_modifier
803          - &add_after_method_modifier
804          - &add_around_method_modifier
805              - added tests and docs for these
806       - added &find_next_method_by_name which finds the
807         equivalent of SUPER::method_name
808
809 0.12 Thurs. Feb 23, 2006
810     - reduced the dependency on B, no need to always
811       have the latest
812
813     * examples/
814       - added docs to the C3 method dispatch order test
815       - fixed missing Algorithm::C3 dependency by making
816         the test skip if it is not installed
817
818 0.11 Mon Feb. 20, 2006
819     * examples/
820       - added example of changing method dispatch order to C3
821
822     * Class::MOP::Class
823       - changed how clone_instance behaves, it now only does a
824         shallow clone (see docs for more details)
825         - added docs and tests
826
827 0.10 Tues Feb. 14, 2006
828     ** This release was mostly about writing more tests and
829        cleaning out old and dusty code, the MOP should now
830        be considered "ready to use".
831
832     - adding more tests to get coverage up a little higher,
833       mostly testing errors and edge cases.
834       - test coverage is now at 99%
835
836     * Class::MOP
837       - no longer optionally exports to UNIVERSAL::meta or
838         creates a custom metaclass generator, use the
839         metaclass pragma instead.
840
841     * Class::MOP::Class
842       - fixed a number of minor issues which came up in the
843         error/edge-case tests
844
845     * Class::MOP::Attribute
846       - fixed a number of minor issues which came up in the
847         error/edge-case tests
848
849     * examples/
850       - fixing the AttributesWithHistory example, it was broken.
851
852 0.06 Thurs Feb. 9, 2006
853     * metaclass
854       - adding new metaclass pragma to make setting up the
855         metaclass a little more straightforward
856
857     * Class::MOP
858       - clean up bootstrapping to include more complete
859         attribute definitions for Class::MOP::Class and
860         Class::MOP::Attribute (accessors, readers, writers,
861         etc.) ... it is redundant, but is useful meta-info
862         to have around.
863
864     * Class::MOP::Class
865       - fixing minor meta-circularity issue with &meta, it
866         is now more useful for subclasses
867       - added &get_attribute_map as an accessor for the
868         hash of attribute meta objects
869       - &compute_all_applicable_attributes now just returns
870         the attribute meta-object, rather than the HASH ref
871         since all the same info can be gotten from the
872         attribute meta-object itself
873           - updated docs & tests to reflect
874       - added &clone_instance method which does a deep clone
875         of the instance structure created by &construct_instance
876           - added docs & tests for this
877           - added Clone as a dependency
878       - added &new_object and &clone_object convience methods to
879         return blessed new or cloned instances
880           - they handle Class::MOP::Class singletons correctly too
881           - added docs & tests for this
882       - cleaned up the &constuct_class_instance so that it behaves
883         more like &construct_instance (and managed the singletons too)
884       - added the &check_metaclass_compatibility method to make sure
885         that metaclasses are upward and downward compatible.
886           - added tests and docs for this
887
888     * examples/
889       - adjusting code to use the &Class::MOP::Class::meta
890         fix detailed above
891       - adjusting code to use the metaclass pragma
892
893 0.05 Sat Feb. 4, 2006
894     * Class::MOP::Class
895       - added the &attribute_metaclass and &method_metaclass
896         attributes which contain a metaclass name to use for
897         attributes/methods respectively
898
899     * Class::MOP
900       - bootstrap additional attributes for Class::MOP::Class
901
902     * examples/
903       - adjusted the example code and tests to use the new
904         &attribute_metaclass feature of Class::MOP::Class
905       - added new example:
906         - LazyClass
907
908 0.04 Fri Feb. 3, 2006
909     * Class::MOP::Class
910       - some documentation suggestions from #perl6
911
912     * Class::MOP::Attribute
913       - improved error messages
914
915     * examples/
916       - added new examples:
917         - AttributesWithHistory
918         - ClassEncapsultedAttributes
919
920 0.03 Fri Feb. 3, 2006
921     - converted to Module::Build instead of EU::MM
922
923     * Class::MOP::Attribute
924       - refactored method generation code
925       - attributes are now associated with class directly
926
927     * examples/
928       - refactored the InsideOut example to take advantage
929         of the Class::MOP::Attribute refactoring
930       - changed example files to .pod files and hide thier
931         package names from PAUSE (I don't want to own these
932         namespaces really, they are just examples)
933
934 0.02 Thurs Feb. 2, 2006
935     - moving examples from t/lib/* to examples/*
936         - adding POD documentation to the examples
937
938 0.01 Thurs Feb. 2, 2006
939     - Initial release