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