bumped version, updated Changes, added myself to authors list.
[gitmo/Class-MOP.git] / Changes
1 Revision history for Perl extension Class-MOP.
2
3 0.86 Thu, Jun 11, 2009
4     * Class::MOP::Class
5       - make_immutable issues a warning instead of overriding a 
6         DESTROY method on immutable classes. (Dylan William Hardison).
7
8 0.85 Sat, Jun 6, 2009
9     * Class::MOP::Attribute
10       - Allow default values to be Class::MOP::Methods.  (Florian
11         Ragwitz)
12       - Test the above. (Rhesa Rozendaal)
13       - Tweak original commit so the intent matches the accepted
14         behavior (Nicholas Perez)
15
16     * Class::MOP
17       - Localize $SIG{__DIE__} inside _try_load_one_class (Sartak)
18
19     * Class::MOP::Class
20       - Add direct_subclasses method (Sartak)
21         - Tests for subclasses and direct_subclasses (Sartak)
22       - subname is no longer used unconditionally in add_method, but
23         only if the code reference's name is '__ANON__' (nothingmuch)
24       - Add a hook for _superclasses_updated (Sartak)
25
26     * Class::MOP::Method
27       - Remove long, old warning about possibly outdated modules
28         (Sartak)
29
30 0.84 Tue, May 12, 2009
31     * Makefile.PL
32       - Depend on Text::Exception 0.27 to avoid failing tests ond old
33         versions (rafl)
34
35     * Class::MOP
36       - Made is_class_loaded a little stricter. It was reporting that
37         a class was loaded if it merely had an @ISA variable in its
38         stash. Now it checks that the @ISA var has elements in it.
39       - Deprecate in_global_destruction and subname re-exporting
40         (perigrin & Sartak)
41
42     * Class::MOP::Class
43       - Explicitly use Devel::GlobalDestruction and Sub::Name
44         (perigrin)
45
46     * Class::MOP::Package
47       - Disable prototype mismatch warnings for add_package_symbol.
48         (Florian Ragwitz)
49
50 0.83 Mon, April 27, 2009
51     * Class::MOP::Class
52       - Fix segfault when calling get_method_map on a metaclass for an empty
53         package (doy)
54
55 0.82_02 Fri, April 24, 2009
56     * Class::MOP::Method::Inlined
57       - Don't inline if the expected method is not defined at all (happens with
58         e.g. Moose::Object::_new is the expected method due to an overridden
59         name)
60     * Tests
61       - Some tests were trying to load Class::MOP::Immutable, which
62         was removed in 0.82_01.
63
64 0.82_01 Thu, April 23, 2009
65     * Class::MOP::Immutable (and others)
66       - Refactor the immutability system to use a pre-defined class
67         for the immutable metaclass of Class::MOP::Class::Immutable::$class
68       - Rather than generating methods into this class every time, use
69         a Trait (basic mixin) to supply the cached methods
70       - Remove the hack that returns the mutable metaclass for
71         metacircularity in order to provide consistent meta-metaclasses
72         for the Moose compatibility handling code
73         (mst broke it, nothingmuch fixed it)
74
75 0.82 Mon, April 20, 2009
76     * Various
77       - The deprecation wrappers for some renamed methods were not
78         passing arguments to the new method. (nothingmuch)
79
80     * Class::MOP::Immutable
81       - Warn during immutablization if the local class provides its own
82         constructor, to parallel the warning in Moose when a superclass
83         provides its own constructor (doy)
84
85 0.81 Tue, April 7, 2009
86     * Class::MOP
87     * Class::MOP::Class
88     * Class::MOP::Instance
89     * Class::MOP::Attribute
90     * Class::MOP::Method::Accessor
91     * Class::MOP::Method::Constructor
92       - Include stack traces in the deprecation warnings introduced in
93         0.80_01. (Florian Ragwitz)
94
95     * MOP.xs
96       - Avoid c compiler warnings by declaring some unused function
97         arguments. (Florian Ragwitz)
98
99 0.80_01 Sun, April 5, 2009
100     * Makefile.PL
101       - Make sure to preserve any compiler flags already defined in
102         Config.pm. Patch by Vincent Pit. RT #44739.
103
104     * Many methods have been renamed with a leading underscore, and a
105       few have been deprecated entirely. The methods with a leading
106       underscore are consider "internals only". People writing
107       subclasses or extensions to Class::MOP should feel free to
108       override them, but they are not for "public" use.
109
110       - Class::MOP::Class
111         - construct_class_instance => _construct_class_instance (use new_object)
112         - construct_instance => _construct_instance (use new_object)
113         - check_metaclass_compatibility => _check_metaclass_compatibility
114         - create_meta_instance => _create_meta_instance (use get_meta_instance)
115         - clone_instance => _clone_instance (use clone_object)
116         - compute_all_applicable_methods is deprecated, use get_all_methods
117         - compute_all_applicable_attributes is deprecated, use get_all_attributes
118
119       - Class::MOP::Instance
120         - bless_instance_structure is deprecated and will be removed
121           in a future release
122
123       - Class::MOP::Module
124         - create has been renamed to _instantiate_module. This method
125           does not construct an object, it evals some code that
126           creates the relevant package in Perl's symbol table.
127
128       - Class::MOP::Method::Accessor
129         - initialize_body => _initialize_body (this is always called
130           when an object is constructed)
131         - /(generate_.*_method(?:_inline)?)/ => '_' . $1
132
133       - Class::MOP::Method::Constructor
134         - initialize_body => _initialize_body (this is always called
135           when an object is constructed)
136         - /(generate_constructor_method(?:_inline)?)/ => '_' . $1
137         - attributes => _attributes
138         - meta_instance => _meta_instance
139
140 0.80 Wed, April 1, 2009
141     * Class::MOP::*
142       - Call user_class->meta in fewer places, with the eventual goal
143         of allowing the user to rename or exclude ->meta
144         altogether. Instead uses Class::MOP::class_of. (Sartak)
145
146     * Class::MOP
147       - New class_of function that should be used to retrieve a
148         metaclass. This is unlike get_metaclass_by_name in that it
149         accepts instances, not just class names. (Sartak)
150
151     * Class::MOP
152       - load_first_existing_class didn't actually load the first
153         existing class; instead, it loaded the first existing and
154         compiling class.  It now throws an error if a class exists (in
155         @INC) but fails to compile.  (hdp)
156
157     * Class::MOP
158     * Class::MOP::Class
159       - we had some semi-buggy code that purported to provide a
160         HAS_ISAREV based on whether mro had get_isarev (due to an
161         oversight, it always returned 1). Since mro and MRO::Compat
162         have always had get_isarev, HAS_ISAREV was pointless. This
163         insight simplified the subclasses method by deleting the
164         pure-perl fallback. HAS_ISAREV is now deprecated. (Sartak)
165
166 0.79 Fri, March 29, 2009
167     * No changes from 0.78_02.
168
169 0.78_02 Thu, March 26, 2009
170     * Class::MOP::Class
171     * Class::MOP::Immutable
172       - A big backwards-incompatible refactoring of the Immutable API,
173         and the make_immutable/make_mutable pieces of the Class
174         API. The core __PACKAGE__->meta->make_immutable API remains
175         the same, however, so this should only affect the most
176         guts-digging code.
177
178     * XS code
179       - The XS code used a macro, XSPROTO, that's only in 5.10.x. This
180         has been fixed to be backwards compatible with 5.8.x.
181
182     * Class::MOP::Class
183       - Add a hook for rebless_instance_away (Sartak)
184       - Use blessed instead of ref to get an instance's class name
185         in rebless_instance. (Sartak)
186
187 0.78_01 Wed, March 18, 2009
188     * Class::MOP::*
189       - Revised and reorganized all of the API documentation. All
190         classes now have (more or less) complete API documentation.
191
192     * Class::MOP::Class
193     * Class::MOP::Instance
194       - Reblessing into a package that supports overloading wasn't
195         properly adding overload magic to the object due to a bug
196         in (at least) 5.8.8. We now use $_[1] directly which seems
197         to set the magic properly. (Sartak)
198
199     * Class::MOP::Attribute
200       - The process_accessors method is now private. A public alias
201         exists (and will stick around for a few releases), but it
202         warns that calling the public method is deprecated.
203
204     * Class::MOP::Method::Generated
205       - Removed the new and _new methods, since this is an abstract
206         base class, and all existing subclasses implement their own
207         constructors.
208
209     * MOP.xs
210       - Stop is_class_loaded from thinking a class is loaded if it
211         only has an empty GV (Florian Ragwitz).
212         - Add a test for this (Yappo).
213       - Refactor get_all_package_symbols to allow short-circuiting
214         (Florian Ragwitz).
215         - Use this in is_class_loaded (Florian Ragwitz).
216       - Stop segfaulting when trying to get the name from a sub that's
217         still being compiled (Florian Ragwitz).
218         - Add tests for this (Florian Ragwitz).
219       - Prefix all public symbols with "mop_" (Florian Ragwitz).
220       - Clean up and simplify prehashing of hash keys (Florian Ragwitz).
221       - Simplify creating simple xs reader methods (Florian Ragwitz).
222       - Make everything compile with c++ compilers (Florian Ragwitz).
223       - Upgrade ppport.h from 3.14 to 3.17 (Florian Ragwitz).
224
225     * Tests
226       - Remove optional test plans for tests depending on Sub::Name as
227         we have a hard dependency on Sub::Name anyway (Florian Ragwitz).
228
229     * Makefile.PL
230       - Rebuild all c code if mop.h has changed (Florian Ragwitz)
231
232 0.78 Mon, February 23, 2009
233     * No changes from 0.77_01
234
235 0.77_01 Sun, February 22, 2009
236     * Everything
237       - This package now requires its XS components. Not using
238         Sub::Name lead to different behavior and bugginess in the pure
239         Perl version of the code. A Moose test would fail when run
240         against the pure Perl version of this code.
241
242     * Class::MOP::Instance
243       - The inline_* methods now quote attribute names themselves, and
244         don't expect to receive a quoted value.
245
246
247 0.77 Sat, February 14, 2009
248     * MOP.xs
249       - Avoid assertion errors on debugging perls in is_class_loaded
250         (Florian Ragwitz)
251
252     * Class::MOP
253       - Fixed various corner cases where is_class_loaded incorrectly
254         returned true for a class that wasn't really loaded. (Dave
255         Rolsky)
256
257     * Class::MOP::Class
258       - Add get_all_method_names (Sartak)
259       - Add a wrapped_method_metaclass attribute (Florian Ragwitz)
260
261     * Class::MOP::Package
262       - Disable deprecated get_all_package_symbols in list
263         context. (Florian Ragwitz)
264
265     * Makefile.PL
266       - Make sure we generate a BSD-compatible Makefile (Florian
267         Ragwitz)
268
269     * Class::MOP::Class
270       - The misspelled "check_metaclass_compatability" method we've
271         kept around for backwards compat_i_bility will be removed in a
272         near future release. You've been warned.
273
274 0.76 Thu, January 22, 2009
275     * Class::MOP::Method::Generated
276       - Added new private methods to support code generation, which
277         are being used by Moose and can be used by MooseX
278         authors. (mst)
279       - Generated methods are now generated with a #line directive
280         reflecting the source of the generated method. (nothingmuch)
281
282     * Class::MOP::Class
283       - Clarified documentation of methods that return
284         Class::MOP::Method objects. (doy)
285
286     * Class::MOP
287       - Clarified documentation of the metaclass cache methods. (Sartak)
288
289     * Tests
290       - Add test showing how the xs Class::MOP::is_class_loaded can
291         be made to operate differently to the pure perl version (t0m)
292
293 0.75 Wed, December 31, 2008
294     * Class::MOP::Class
295       - A class that was made immutable and then mutable could end up
296         sharing an immutable transformer object
297         (Class::MOP::Immutable) with other classes, leading to all
298         sorts of odd bugs. Reported by t0m. (Dave Rolsky)
299
300 0.74 Tue, December 25, 2008
301     * MOP.xs
302       - Add an xs implementation of Class::MOP::is_class_loaded (closes
303         RT#41862). Based on a patch by Goro Fuji. (Florian Ragwitz)
304       - Changed internals to make prehashing of hash keys easier and less
305         error-prone. (Florian Ragwitz)
306     * Class::MOP::Class
307       - Fix documentation to show that around modifiers happen on both
308         sides of the modified method. (Dave Rolsky)
309
310 0.73 Tue, December 16, 2008
311     * MOP.xs
312       - Don't use Perl_mro_meta_init. It's not part of the public perl
313         api. Fixes failures to build on Win32 (RT #41750).  (Florian
314         Ragwitz)
315     * t/082_get_code_info.t
316       - Add $^P &= ~0x200; (per Ovid's suggestion) in order to not
317         munger anonymous subs when under -d and so making the tests
318         succeed in that case.
319
320 0.72 Mon, December 8, 2008
321     * Class::MOP::Package
322       - Pass options to _new, so subclass' attributes can be
323         initialized (Sartak)
324     * Class::MOP::Method
325       - In the docs, indicate that package_name and name are required
326         when calling ->wrap (Stefan O'Rear)
327
328 0.71_02 Fri, December 5, 2008
329     * Class::MOP::Immutable
330       - Added a new attribute, inlined_constructor, which is true if
331         the constructor was inlined.
332     * Class::MOP::Package
333       - Make get_all_package_symbols return a hash ref in scalar
334         context and deprecate calling it in list context with a
335         warning. (Florian Ragwitz)
336     * MOP.xs
337       - Various improvements and refactoring, making things more robust and
338         easier to maintain. (Florian Ragwitz)
339
340 0.71_01 Wed, December 3, 2008
341     * Class::MOP::Method
342       - Add an "execute" method to invoke the body so
343         we can avoid using the coderef overload (Sartak)
344     * Class::MOP::Immutable
345       - When we memoize methods, get their results lazily
346         to remove some compile-time cost (Sartak)
347       - Small speedup from eliminating several method
348         calls (Sartak)
349     * Class::MOP::Class
350       - Some small internal tweaks to try to reduce the number of
351         times we call get_method_map when bootstrapping the MOP. This
352         might make loading Class::MOP (and Moose) a little
353         faster. (Dave Rolsky)
354       - Implemented an optional XS version of get_method_map. Mostly
355         taken from a patch by Goro Fuji (rt.cpan.org #41080), with
356         help form Florian Ragwitz. (Dave Rolsky)
357       - Make the behaviour of of get_all_package_symbols (and
358         therefore get_method_map) consistent for stub methods. Report
359         and test by Goro Fuji (rt.cpan.org #41255). (Florian Ragwitz)
360
361 0.71 Wed November 26, 2008
362     * Class::MOP::Class
363     * Class::MOP::Module
364       - Actual package creation has moved upward from
365         Class to Module so that Moose roles can share
366         the code (Sartak)
367
368 0.70_01 Mon, November 19, 2008
369     * Class::MOP
370       - Fixes for failures with blead (Florian Ragwitz)
371       - Silenced compiler warnings (Florian Ragwitz)
372
373 0.70 Fri, November 14, 2008
374     * Class::MOP
375       - Fixed an odd corner case where the XS version of
376         get_all_package_symbols could cause a segfault. This only
377         happened with inlined constants in Perl 5.10.0 (Florian
378         Ragwitz)
379
380 0.69 Fri, November 7, 2008
381     * Class::MOP::Method::Wrapped
382       - Added introspection methods for method modifiers (Dave Rolsky)
383
384
385 0.68 Fri October 24, 2008
386     * Class::MOP
387       - Make load_class require by file name instead of module name.
388         This stops confusing error messages when loading '__PACKAGE__'.
389         (Florian Ragwitz)
390       - Add load_one_class_of function to enable you to load one of a
391         list of classes, rather than having to call load_class multiple
392         times in an eval. (t0m)
393
394 0.67 Tue October 14, 2008
395     * Class::MOP::Class
396       - Call a method on the class after setting the superclass list
397         so that we can get Perl to detect cycles before MRO::Compat
398         spirals into an infinite loop (sartak)
399         - Reported by Schwern, [rt.cpan.org #39001]
400       - In create(), pass unused options on to initialize()
401         - added test for this
402
403 0.66 Sat September 20, 2008
404     !! This release has an incompatible change regarding !!
405        introspection of a class's method with Class::MOP::Class !!
406
407     * Tests and XS
408       - We (us maintainers) now run all tests with XS and then without
409         XS, which should help us catch skew between the XS/pure Perl
410         code. (Dave Rolsky)
411
412     * Class::MOP::Class
413       ! The alias_method method has been deprecated. It now simply
414         calls add_method instead. There is no distinction between
415         aliased methods and "real" methods.
416
417         This means that methods added via alias_method now show up as
418         part of the class's method list/map. This is a backwards
419         incompatible change, but seems unlikely to break any
420         code. Famous last words. (Dave Rolsky)
421
422     * Class::MOP::Class
423       - Fixed the spelling of "compatibility", but we still have a
424         "check_metaclass_compatability" method for backwards
425         compatibility.
426
427 0.65 Mon September 1, 2008
428     For those not following the series of dev releases, the changes
429     from 0.64 from 0.65 can mostly be summed up as a lot performance
430     improvements by nothingmuch, including new optional XS versions of
431     some methods. Also, Class::MOP now works _without_ any XS modules,
432     for sad systems without a compiler.
433
434     * Class::MOP::Method
435       - Added name and package_name XS accessors, and make sure all
436         the XS and Perl versions work the same way. (Dave Rolsky)
437
438     * MOP.xs
439       - The XS versions of various methods just returned undef when
440         called class methods, rather than dying like the pure Perl
441         versions. (Dave Rolsky)
442
443 0.64_07 Fri August 29, 2008
444     * Class::MOP
445       - Silenced warnings that managed to break Moose tests when XS
446         was loaded. (Dave Rolsky)
447       - Some XS versions of methods were ignored because of typos in
448         MOP.xs. (Dave Rolsky)
449
450 0.64_06 Mon August 25, 2008
451     * Class::MOP (MOP.xs)
452       - Another MS VC++ fix, cannot declare a variable in the middle
453         of a scope (Taro Nishino).
454
455 0.64_05 Sun August 24, 2008
456     * Class::MOP
457       - None of the dev releases actually loaded the XS properly, but
458         we silently fell back to the pure Perl version of the
459         code. (Dave Rolsky)
460
461     * Class::MOP (MOP.xs)
462       - Replaced some code that used functions not available on Visual
463         C++ with some Perl XS API bits (Dave Rolsky).
464
465 0.64_04 Sat August 23, 2008
466     * Class::MOP::Class
467       - Workaround a bug in 5.8.1's goto sub (nothingmuch)
468
469     * pod.t and pod_coveraget.t
470       - These are no longer shipped with the tarball because of bogus
471         failures from CPAN testers. (Dave Rolsky)
472
473 0.64_03 Thu August 21, 2008
474     * Class::MOP::Package
475       - Some (legit) code was misparsed by earlier 5.8.x
476         releases. (nothingmuch)
477
478     * Class::MOP
479       - Fix a constant in void context warning (nothingmuch)
480
481 0.64_02 Thu August 21, 2008
482     * Makefile.PL and Class::MOP
483       - Explicitly require Perl 5.8.0+ (Dave Rolsky)
484
485     * Makefile.PL
486       - Add missing prereqs that got lost in the switch away from
487         Module::Install.
488
489     * Class::MOP::Instance
490       - New method - get_all_attributes (nothingmuch)
491
492 0.64_01 Wed August 20, 2008
493     * Makefile.PL
494       - We now check to see if you have a compiler. If you don't, the
495         module installs without some XS bits, but will work the same
496         as with XS. This should make it easier to install on platforms
497         without a compiler (like Windows). (Dave Rolsky)
498
499     * many modules
500       - Perl 6 style attribute naming replaced with sane style ('methods', not
501         '%!methods'). These changes should not impact any existing API uses.
502         (nothingmuch).
503
504     * many modules
505       - Quite a number of optimizations based on profiling, including
506         allowing constructors to take hash references instead of
507         hashes, duplicating some frequently used code in XS, and
508         making constructors immutable. These changes should not impact
509         any existing API uses. (nothingmuch)
510
511     * Many modules
512       - Constructors now respect the meta attributes of their subclasses,
513         facilitating MOP extensibility. More related changes will happen in the
514         next several releases. (nothingmuch)
515
516     * Class::MOP::Class
517       - New method - get_all_methods, replaces the deprecated
518         compute_all_applicable_methods. get_all_attributes provided for
519         consistency (nothingmuch)
520       - New method - wrap_method was refactored out of get_method_map
521         (nothingmuch)
522       - New API for meta instance invalidation - invalidate_meta_instance,
523         invalidate_meta_instances, add_dependent_meta_instance,
524         remove_dependent_meta_instance, called automatically when attribute
525         definitions change and allows notification of dependent subclasses.
526         (nothingmuch)
527
528 0.64 Sun August 3, 2008
529     * Class::MOP::Immutable
530       - fixing subtle edge case in immutable when you
531         call ->meta (stevan)
532       - clean up option processing (nothingmuch)
533
534     * Class::MOP::Instance
535       - inlined initialize slot didn't match
536         non-inlined (nothingmuch)
537
538 0.63 Mon July 7, 2008
539     * Class::MOP
540       - load_class will initialize a metaclass even if
541         the class is already loaded (sartak)
542       - load_class now returns the metaclass instance
543         instead of just 1 (sartak)
544
545     * elsewhere
546       - better error messages (sartak and Dave Rolsky)
547
548 0.62 Wed June 18, 2008
549     - in is_class_loaded, recognize scalar references (as opposed to globs) in
550       the symbol table as methods (these are optimized constant subs)
551
552 0.61 Fri. June 13, 2008
553     - Okay, lets give this another try and see if PAUSE 
554       recognizes it correct this time.
555
556 0.60 Thurs. Jun 12, 2008
557     - Fixed a version number issue by bumping all modules
558       to 0.60.
559
560 0.59 Thurs. Jun 12, 2008
561     !! Several fixes resulting in yet another 25-30% speedup !!
562
563     * Class::MOP::Class
564       - now stores the instance of the instance 
565         metaclass to avoid needless recomputation
566         and deletes it when the cache is blown
567       - introduce methods to query Class::MOP::Class for 
568         the options used to make it immutable as well as
569         the proper immutable transformer. (groditi)        
570
571     * Class::MOP::Package
572       - {add, has, get, remove}_package_symbol all 
573         now accept a HASH ref argument as well as the
574         string. All internal usages now use the HASH
575         ref version.
576
577     * Class::MOP
578       - MOP.xs does sanity checks on the coderef 
579         to avoid a segfault
580       - is_class_loaded check now uses code that
581         was improved in Moose's ClassName type
582         check (Sartak)
583       - nonsensical (undef, empty, reference) class
584         names now throw a more direct error in
585         load_class (Sartak)
586         - tests for this and other aspects of
587           load_class (Sartak)
588     
589     * Class::MOP
590       Class::MOP::Class      
591       Class::MOP::Method
592       Class::MOP::Method::Wrapped
593       Class::MOP::Attribute
594       - switched usage of reftype to ref because 
595         it is much faster
596
597 0.58 Thurs. May 29, 2008
598     (late night release engineering)--
599     
600     - fixing the version is META.yml, no functional 
601       changes in this release
602
603 0.57 Wed. May 28, 2008
604     !! Several speedups resulting in 20-25% speedups !!
605     || (thanks to konobi, groditi, mst & CataMoose) !!
606
607     * Class::MOP::Class
608       - made get_method_map use list_all_package_symbols
609         instead of manually grabbing each symbol
610       - streamlining &initialize somewhat, since it gets
611         called so much
612         
613     * Class::MOP::Package
614       - made {get, has}_package_symbol not call 
615         &namespace so much 
616       - inlining a few calls to &name with 
617         direct HASH access key access
618       - added get_all_package_symbols to fetch 
619         a HASH of items based on a type filter
620         similar to list_all_package_symbols
621         - added tests for this
622
623     * Class::MOP::Method
624       Class::MOP::Method::Constructor
625       Class::MOP::Method::Generated
626       Class::MOP::Method::Accessor
627       - added more descriptive error message to help 
628         keep people from wasting time tracking an error
629         that is easily fixed by upgrading.
630
631     * Class::MOP::Immutable
632       - Don't inline a destructor unless the user actually
633         needs one
634         - added tests for this
635
636 0.56 Saturday, May 24, 2008
637     * Class::MOP
638       - we now get the &check_package_cache_flag
639         function from MRO::Compat
640       - All XS based functionality now has a 
641         Pure Perl alternative
642         - the CLASS_MOP_NO_XS environment variable
643           can now be used to force non-XS versions
644           to always be used
645
646     * Class::MOP::Attribute
647       - add has_read_method and has_write_method
648       - get_{read,write}_method_ref now wraps the
649         anon-sub ref in the method metaclass when
650         possible
651         - added tests for this
652
653     * Class::MOP::Immutable
654       - added the ability to "wrap" methods when
655         making the class immutable
656
657     * Class::MOP::Class
658       - now handling the edge case of ->meta->identifier
659         dying by wrapping add_package_symbol to specifically
660         allow for it to work.
661         - added tests for this
662
663     * Class::MOP::Attribute
664       Class::MOP::Class
665       Class::MOP::Immutable
666       - any time a method meta object is constructed
667         we make sure to pass the correct package and
668         method name information
669
670     * Class::MOP::Method
671       Class::MOP::Method::Wrapped
672       Class::MOP::Method::Generated
673       Class::MOP::Method::Accessor
674       Class::MOP::Method::Consructor
675       - the &wrap constructor method now requires that a 
676         'package_name' and 'name' attribute are passed. This 
677         is to help support the no-XS version, and will 
678         throw an error if these are not supplied.      
679       - all these classes are now bootstrapped properly
680         and now store the package_name and name attributes
681         correctly as well        
682
683     ~ Build.PL has been removed since the 
684       Module::Install support has been removed
685
686 0.55 Mon. April 28, 2008
687     - All classes now have proper C3 MRO support
688       - added MRO::Compat as a dependency to allow
689         for the C3 MRO support to Just Work in all
690         perl versions
691
692     * Class::MOP::Class
693       - rebless_instance now returns the instance
694         it has just blessed, this is mostly to
695         facilitate chaining
696       - set the attr correctly in rebless_instance
697         when it has no init_arg
698       - tweaked &linear_isa and &class_precedence_list
699         to support c3 classes.
700
701 0.54 Fri. March, 14, 2008
702     * Class::MOP
703       metaclass.pm
704       - making sure that load_class never gets
705         passed a value from @_ or $_ to squash
706         Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
707
708     * Class::MOP::Class
709       - make_{immutable,mutable} now return 1
710         (cause Sartak asked)
711       - improved error handling in ->create method
712       - rebless_instance now takes extra params which
713         will be used to populate values
714         - added tests for this
715
716     * Class::MOP::Object
717       - localizing the Data::Dumper configurations so
718         that it does not pollute others (RT #33509)
719
720     * Class::MOP::Class
721       Class::MOP::Package
722       Class::MOP::Module
723       Class::MOP::Method
724       Class::MOP::Attribute
725       - these classes no longer define their own ->meta,
726         but instead just inherit from Class::MOP::Object
727
728     * Class::MOP::Instance
729       Class::MOP::Immutable
730       - these classes now inherit from Class::MOP::Object
731
732     * t/
733       - fixed the filename length on several
734         test files so we install on VMS better
735         (RT #32295)
736       - fixed incorrect use of catdir when it
737         should be catfile (RT #32385)
738
739 0.53 Thurs. Feb. 14, 1008
740     ~~ several doc. fixes and updates ~~
741
742     * Class::MOP::Class
743       Class::MOP::Method::Constructor
744       Class::MOP::Attribute
745         - making init_arg accept an undefined value
746           to indicate that no constructor args can
747           be passed (thanks to nothingmuch)
748           - added tests for this
749         - added attribute initializer attribute (rjbs)
750
751     * Class::MOP.
752         - making this use the new init_arg => undef
753           feature instead of the silly hack from
754           before (thanks to nothingmuch)
755
756 0.52 Tues. Jan. 22, 2008
757     * Class::MOP::Class
758       - fixed bug in rebless_instance
759         (discovered by ash)
760
761     * Class::MOP::Method::Constructor
762       - removed assumptions about the existence of
763         a &meta method
764
765 0.51 Mon. Jan. 14, 2008
766     ~~~ some misc. doc. fixes ~~~
767     ~~ updated copyright dates ~~
768
769     * Class::MOP
770       - now sets the IS_RUNNING_ON_5_10
771         constant so that we can take advantage
772         of some of the nice bits of 5.10
773
774     * Class::MOP::Class
775       - uses the IS_RUNNING_ON_5_10 flag to
776         optimize the &linearized_isa method
777         and avoid the hack/check for circular
778         inheritence in &class_precedence_list
779       - added rebless_instance method (Sartak)
780         - added tests for this
781
782     * Class::MOP::Immutable
783       - the immutable class now keeps track of
784         the transformer which immutablized it
785
786     * Class::MOP::Instance
787       - added rebless_instance_structure method (Sartak)
788         - added tests for this
789
790 0.50 Fri. Dec. 21, 2007
791     * Class::MOP::Class
792       - fixed bug in immutable to make sure that
793         transformation arguments are saved
794         correctly (mst)
795         - added tests for this
796
797     * Class::MOP::Immutable
798       - fixed a bug (see above)
799
800     * Class::MOP::Attribute
801       - some doc updates
802
803 0.49 Fri. Dec. 14, 2007
804     !! Class::MOP now loads 2 x faster  !!
805     !! with XS speedups (thanks konobi) !!
806
807     * Class::MOP
808       - removed the dependency on B
809       - added two XS functions (thanks konobi)
810         - get_code_info($code) which replaces all
811           the B fiddling we were doing with
812           faster/leaner XS level fiddling
813         - check_package_cache_flag($pkg_name) which
814           returns the PL_sub_generation variable to
815           be used to help manage method caching.
816
817           NOTE:
818           In 5.10 or greater this will actually
819           use the mro::get_pkg_gen instead to give
820           even more accurate caching information.
821           blblack++ for that stuff :)
822
823     * Class::MOP::Class
824       - added the &subclasses method (thanks rlb)
825       - added the update_package_cache_flag and
826         reset_package_cache_flag which help keep
827         track of when we need to re-fetch the
828         method map.
829       - Several small improvements to take advantage
830         of the new method map caching features
831
832 0.48 Mon. Nov. 26, 2007
833     * Class::MOP::Attribute
834       - fixed get_read/write_method to handle the
835         HASH ref case, which makes the
836         get_read/write_method_ref handle it too.
837         - added more tests for this
838
839 0.47 Sat. Nov. 24, 2007
840     * Class::MOP::Attribute
841       - fixed misspelling in get_write_method_ref
842         - added more tests for this
843
844 0.46 Fri. Nov. 23, 2007
845     * Class::MOP::Class
846       - added the linearized_isa method instead of constantly
847         pruning duplicate classes (this will be even more
848         useful in the 5.10-compat version coming soon)
849
850     * Class::MOP::Attribute
851       - added the get_read_method_ref and get_write_method_ref
852         methods which allow you to retrieve a CODE ref which
853         can always be used to read or write an attribute.
854
855 0.45 Thurs. Nov. 13, 2007
856     * Class::MOP::Attribute
857       - Fix error message on confess (groditi)
858
859 0.44 Thurs. Nov. 13, 2007
860     - Apparently I didn't make dist correctly (groditi)
861
862 0.43 Thurs. Nov. 13, 2007
863     * Class::MOP
864       - Add support for the 'builder' attribute (groditi)
865
866     * Class::MOP::Class
867       - optimise metaclass-already-exists check in
868         construct_class_instance (groditi)
869       - duplicate check into initialize to save a
870         call through (groditi)
871
872     * Class::MOP::Attribute
873       - Add support for the 'builder' attribute (groditi)
874       - Make predicates check for the existence of a value, not whether
875         it is defined (groditi)
876
877     * Class::MOP::Instance
878       - Make predicates check for the existence of a value, not whether
879         it is defined (groditi)
880
881     * Class::MOP::Method::Accessor
882       - made this a subclass of Class::MOP::Method::Generated
883         - removed the relevant attributes
884
885     * Class::MOP::Method::Constructor
886       - fixed the cached values we had to be more sane
887       - made this a subclass of Class::MOP::Method::Generated
888       - fixed generated constructor so it properly handles
889         subclasses now.
890         - added tests for this
891       - added the option to allow for both inlined and
892         non-inlined constructors.
893       - Update inlined methods for builder and predicate changes (groditi)
894
895     * Class::MOP::Method::Generated
896       - added this class as an abstract base for the
897         Class::MOP::Method::{Constructor,Accessor} classes
898         - added tests for this
899
900     *t/
901       - Alter tests (005, 014 020, 021) for new builder addition (groditi)
902       - Tests for new predicate behavior (and corrections to old tests) (groditi)
903
904     *examples/
905       - Update ArrayRef based class example to work with predicate changes
906
907 0.42 Mon. July 16, 2007
908     !!! Horray for mst, he fixed it !!!
909
910     * Class::MOP::Package
911       - alter symbol table handling to deal with 5.8.x and 5.9.x
912
913     * t/
914       - Get rid of the crappy workaround from 0.40/41
915
916 0.41 Sun. July 15, 2007
917     * t/
918         Arghh!!! My TODO test didn't work, so I handle
919         it manually now so that people can use this
920         with 5.9.5/bleadperl without issue.
921
922 0.40 Tues, July 3, 2007
923     * t/
924       ~ marked a test in 003_methods.t as TODO
925         for perl 5.9.5 (this test is irrelvant to
926         the module functioning on 5.9.5 for the most
927         part anyway)
928
929 0.39 Mon. June 18, 2007
930     * Class::MOP::Immutable
931       - added make_metaclass_mutable + docs (groditi)
932       - removed unused variable
933       - added create_immutable_transformer
934         necessary for sane overloading of immutable behavior
935          - tests for this (groditi)
936
937     * Class::MOP::Class
938       - Immutability can now be undone,
939         added make_mutable + tests + docs (groditi)
940       - Massive changes to the way Immutable is done
941         for details see comments next to make_immutable
942         This fixes a bug where custom metaclasses broke
943         when made immutable. We are now keeping one immutable
944         metaclass instance per metaclass instead of just one
945         to prevent isa hierarchy corruption. Memory use will go
946         up, but I suspect it will be neglible.
947          - New tests added for this behavior.  (groditi)
948
949 0.38 Thurs. May 31, 2007
950     ~~ More documentation updates ~~
951
952     * Class::MOP::Package
953       - we now deal with stub methods properly
954         - added tests for this
955       - fixed some tests failing on 5.9.5 (thanks blblack)
956
957     * Class::MOP::Attribute
958       - added get_read_method and get_write_method
959         thanks to groditi for this code, tests
960         and docs.
961         - added tests and POD for this
962
963     * Class::MOP::Class
964       - fixed RT issue #27329, clone object now
965         handles undef values correctly.
966         - added tests for this
967       - Corrected anon-class handling so that they
968         will not get reaped when instances still
969         exist which need to reference them. This is
970         the correct behavior, hopefully this is an
971         obscure enough feature that there are not too
972         many work arounds out in the wild.
973         - added tests for this by groditi
974         - updated docs to explain this
975
976     * metaclass
977       - load custom metaclasses automatically (thanks groditi)
978         - added tests for this behavior
979
980 0.37 Sat. March 10, 2007
981     ~~ Many, many documentation updates ~~
982
983     * Class::MOP
984       - added &load_class and &is_class_loaded
985         - added tests and docs for these
986
987     * Class::MOP::Attribute
988       - default now checks the instance with defined to
989         avoid setting off bool-overloads (found by Carl Franks)
990
991 0.37_002
992     * /t
993       - bad name in a test, causing meaningless failuress.
994         No other changes.
995
996 0.37_001
997
998     ~~ GLOBAL CHANGES ~~
999     - All attribute names are now consistent and follow Perl 6
1000       style (prefixed with the sigil, and ! as the twigil for
1001       private attrs). This should not affect any code, unless
1002       you broke encapsulation, in which case, it is your problem
1003       anyway.
1004
1005     !! Class::MOP::Class::Immutable has been removed
1006
1007     * Class::MOP::Method::Constructor
1008       - this has been moved out of Class::MOP::Class::Immutable
1009         and is a proper subclass of Class::MOP::Method now.
1010
1011     * Class::MOP::Class
1012       - this module now uses Class::MOP::Immutable for the
1013         immutable transformation instead of
1014         Class::MOP::Class::Immutable.
1015
1016     + Class::MOP::Immutable
1017       - this module now controls the transformation from a mutable
1018         to an immutable version of the class. Docs for this will
1019         be coming eventually.
1020
1021
1022 0.36 Sun. Nov. 5, 2006
1023     * Class::MOP::Class
1024       - added a few 'no warnings' lines to keep annoying
1025         (and meaningless) warnings from chirping during
1026         global destruction.
1027
1028     * Class::MOP
1029       - some more bootstrapping is now done on the new
1030         classes
1031
1032     * Class::MOP::Class::Immutable
1033       *** API CHANGE ***
1034       - constructor generation is now handled by
1035         the Class::MOP::Method::Constructor class
1036
1037     * Class::MOP::Method::Constructor
1038       - created this to handle constructor generation
1039         in Class::MOP::Class::Immutable
1040
1041     * Class::MOP::Attribute
1042       *** API CHANGE ***
1043       - attributes now delegate to the
1044         Class::MOP::Method::Accessor to generate
1045         accessors
1046
1047     * Class::MOP::Method::Accessor
1048       - all accessor generation functions from
1049         Class::MOP::Attribute have been moved here
1050
1051 0.35 Sat. Sept. 30, 2006
1052
1053     * scripts/class_browser.pl
1054       - initial prototype of a class browser, more
1055         on this to come. Comments and patches are
1056         very much welcome.
1057
1058     * Class::MOP
1059       - All Class::MOP::* accessors are no longer
1060         re-generated in the bootstrap, instead
1061         they are aliased from the originals
1062         - fixed tests to reflect
1063       - added Class::MOP::Method (and its subclasses)
1064         to the bootstrap
1065         - adjusted tests for this
1066       - added the Class::MOP::Instance attributes
1067         to the bootstrap
1068
1069     * Class::MOP::Method
1070       *** API CHANGE ***
1071       - methods are no longer blessed CODE refs
1072         but are actual objects which can be CODE-ified
1073         - adjusted tests to compensate
1074         - adjusted docs for this
1075
1076     * Class::MOP::Class
1077       - changed how methods are dealt with to
1078         encapsulate most of the work into the
1079         &get_method_map method
1080       - made several adjustments for the change
1081         in Class::MOP::Method
1082       - &add_attribute now checks if you are adding
1083         a duplicate name, and properly removes the
1084         old one before installing the new one
1085         - added tests for this
1086         - adjusted docs for this
1087
1088     * Class::MOP::Class::Immutable
1089       - added caching of &get_method_map
1090       - fixed issue with &get_package_symbol
1091       - cleaned up the methods that die (patch by David Wheeler)
1092
1093     * Class::MOP::Package
1094       - added filtering capabilities to
1095         &list_all_package_symbols
1096
1097 0.34 Sat. Aug. 26, 2006
1098     * Class::MOP::Class
1099       - added the %:methods attribute, which like
1100         the $:version and such just actually goes
1101         to the symbol table to get it's stuff.
1102         However, it makes the MOP more complete.
1103      ** API CHANGE **
1104       - The &create method now requires that all
1105         but the package name now is passed in as
1106         named parameters. See docs for more info.
1107         - updated docs and tests for this
1108
1109     * Class::MOP::Object
1110       - added &dump method to easily Data::Dumper
1111         an object
1112
1113     * Class::MOP
1114       - cleaned up the initialization of attributes
1115         which do not store things in the instance
1116       - added the %:methods attribute definition to
1117         the bootstrap
1118
1119     ~ lots of misc. test cleanup
1120
1121 0.33 Sat. Aug. 19, 2006
1122     * Class::MOP::Class
1123       - moved the metaclass cache out of here
1124         and it is now in Class::MOP itself.
1125
1126     * Class::MOP
1127       - moved all the metaclass cache stuff here
1128         - fixed all tests for this
1129
1130     * Class::MOP::Attribute
1131       - reference values (other than CODE refs)
1132         are no longer allowed for defaults
1133         - added tests for this
1134
1135     * Class::MOP::Package
1136       - fixed an issue with perl 5.8.1 and how it deals
1137         with symbol tables. The namespace hash is now
1138         always reloaded from the symbol table.
1139
1140     ~ lots of misc. documentation cleanup
1141
1142 0.32 Sat. Aug. 12, 2006
1143     + added Class::MOP::Object so that the
1144       metamodel is more complete (and closer
1145       to what Perl 6 will probably be).
1146
1147     * Class::MOP::Package
1148       - refactored entire class, this is now
1149         the primary gateway between the metaclass
1150         and the Perl 5 symbol table
1151         - added many tests for this
1152       - this class is now a subclass of
1153         Class::MOP::Object
1154         - added some tests to reflect this
1155
1156     * Class::MOP::Class
1157       - refactored all symbol table access to
1158         use Class::MOP::Package methods instead
1159
1160     * Class::MOP::Module
1161       - adding the $:version attribute in the bootstrap
1162         so that Module has a version as an attribute
1163         - see comment in Class::MOP for details
1164       - added the $:authority attribute to this module
1165         as well as an &identifier method, to bring us
1166         ever closer to Perl 6 goodness
1167         - I have added $AUTHORITY to all the modules
1168         - added tests for this
1169
1170     * Class::MOP::Instance
1171       - added &deinitialize_slot for removing slots
1172         from an instance
1173         - added tests for this
1174
1175     * Class::MOP::Attribute
1176       - added support for &deinitialize_slot for removing
1177         slots from an instance
1178         - added tests for this
1179
1180 0.31 Sat. July 15, 2006
1181
1182     * Class::MOP::Class
1183       - added &find_method_by_name to locate a method
1184         anywhere within the class hierarchy
1185
1186     * Class::MOP::Attribute
1187       - added &set_value and &get_value for getting
1188         the value of the attribute for a particular
1189         instance.
1190
1191 0.30 Wed. July 5, 2006
1192     ---------------------------------------
1193     This is the first version of Class::MOP
1194     to introduce the immutable features which
1195     will be used for optimizating the MOP.
1196     This support should still be considered
1197     experimental, but moving towards stability.
1198     ---------------------------------------
1199
1200     * Created Class::MOP::Class::Immutable
1201
1202     * Created the Class::MOP::Package and
1203       Class::MOP::Module classes to more
1204       closely conform to Perl 6's meta-model
1205
1206     * Class::MOP::Class
1207       - now inherits from Class::MOP::Module
1208       - several methods moved to ::Module and
1209         ::Package and now inherited
1210         - added tests for this
1211
1212     * Class::MOP::Instance
1213       - added an is_inlinable method to allow other
1214         classes to check before they attempt to optimize.
1215       - added an inline_create_instance to inline
1216         instance creation (of course)
1217
1218     ** API CHANGE **
1219       - the Class::MOP::Class::*_package_variable
1220         methods are all now methods of Class::MOP::Package
1221         and called *_package_symbol instead. This is
1222         because they are now more general purpose symbol
1223         table manipulation methods.
1224
1225 0.29_02 Thurs. June 22, 2006
1226     ++ DEVELOPER RELEASE ++
1227     * Class::MOP::Class
1228       - small change in &create so that it behaves
1229         properly when inherited
1230       - small fix to &clone_instance
1231
1232 0.29_01 Fri. May 12, 2006
1233     ++ DEVELOPER RELEASE ++
1234       - This release works in combination with
1235         Moose 0.09_01, it is a developer release
1236         because it introduces a new instance
1237         sub-protocol and has not yet been
1238         optimized.
1239
1240     * Class::MOP::Class
1241       - anon-classes are now properly garbage collected
1242         - added tests for this
1243       - improved method modifier wrapping
1244
1245     * Class::MOP::Instance
1246       - added new instance protocol
1247         - added tests for this
1248       - changed all relevant modules and examples
1249         - Class::MOP::Class
1250         - Class::MOP::Attribute
1251         - examples/*
1252
1253     * metaclass
1254       - you no longer need to specify the metaclass
1255         itself, if it is not there, Class::MOP::Class
1256         is just assumed
1257         - updated tests for this
1258
1259     * examples/
1260       - added ArrayBasedStorage example to show
1261         instance storage using ARRAY refs instead of
1262         HASH refs.
1263         - added tests for this
1264       - InsideOutClass is totally revised using the
1265         new instance protocol
1266         - added more tests for this
1267
1268 0.26 Mon. April 24, 2006
1269     * Class::MOP::Class
1270       - added find_attribute_by_name method
1271         - added tests and docs for this
1272       - some small optimizations
1273
1274     * Class::MOP::Attribute
1275       - some small optimizations
1276
1277 0.25 Thurs. April 20, 2006
1278     * Class::MOP::Class
1279       - added create_anon_class for creating anonymous classes
1280         - added tests for this
1281       - added get_all_metaclasses, get_all_metaclass_names
1282         and get_all_metaclass_instances method to allow
1283         access to all the cached metaclass objects.
1284       - attribute slot initialization is now the responsibility
1285         of the attribute itself, and construct_instance now
1286         delegates appropriately
1287
1288     * Class::MOP::Attribute
1289       - attribute slot initialization is now the responsibility
1290         of the attribute itself, so we added a method for it
1291         called initialize_instance_slot
1292
1293     * examples/
1294       - adjusted all the examples to use the new attribute
1295         initialize_instance_slot method
1296
1297 0.24 Tues. April 11, 2006
1298     * Class::MOP::Class
1299       - cleaned up how the before/after/around method
1300         modifiers get named with Sub::Name
1301
1302 0.23 Thurs. March 30, 2006
1303         * Class::MOP::Class
1304           - fixed the way attribute defaults are handled
1305             during instance construction (bug found by chansen)
1306
1307         * Class::MOP::Attribute
1308           - read-only accessors ('reader') will now die if
1309             passed more than one argument (attempting to write
1310             to them basically)
1311               - added tests for this
1312               - adjusted all /example files to comply
1313
1314 0.22 Mon. March 20, 2006
1315     * Class::MOP::Class
1316       - localized $@ in the *_package_variable functions
1317         because otherwise, it does ugly things in Moose.
1318           - added test case for this
1319
1320 0.21 Wed. March 15, 2006
1321     * Class::MOP::Class
1322       - fixed issue where metaclasses are reaped from
1323         our cache in global destruction, and so are not
1324         available in DESTORY calls
1325
1326 0.20 Thurs. March 2, 2006
1327     - removed the dependency for Clone since
1328       we no longer to deep-cloning by default.
1329
1330     * Class::MOP::Method
1331       - added &package_name, &name and
1332         &fully_qualified_name methods, some of
1333         which were formerly private subs in
1334         Class::MOP::Class
1335
1336     * Class::MOP::Method::Wrapped
1337       - allows for a method to be wrapped with
1338         before, after and around modifiers
1339           - added tests and docs for this feature
1340
1341     * Class::MOP::Class
1342       - improved &get_package_symbol
1343           - &version and &superclasses now use it
1344       - methods are now blessed into Class::MOP::Method
1345         whenever possible
1346       - added methods to install CLOS-style method modifiers
1347          - &add_before_method_modifier
1348          - &add_after_method_modifier
1349          - &add_around_method_modifier
1350              - added tests and docs for these
1351       - added &find_next_method_by_name which finds the
1352         equivalent of SUPER::method_name
1353
1354 0.12 Thurs. Feb 23, 2006
1355     - reduced the dependency on B, no need to always
1356       have the latest
1357
1358     * examples/
1359       - added docs to the C3 method dispatch order test
1360       - fixed missing Algorithm::C3 dependency by making
1361         the test skip if it is not installed
1362
1363 0.11 Mon Feb. 20, 2006
1364     * examples/
1365       - added example of changing method dispatch order to C3
1366
1367     * Class::MOP::Class
1368       - changed how clone_instance behaves, it now only does a
1369         shallow clone (see docs for more details)
1370         - added docs and tests
1371
1372 0.10 Tues Feb. 14, 2006
1373     ** This release was mostly about writing more tests and
1374        cleaning out old and dusty code, the MOP should now
1375        be considered "ready to use".
1376
1377     - adding more tests to get coverage up a little higher,
1378       mostly testing errors and edge cases.
1379       - test coverage is now at 99%
1380
1381     * Class::MOP
1382       - no longer optionally exports to UNIVERSAL::meta or
1383         creates a custom metaclass generator, use the
1384         metaclass pragma instead.
1385
1386     * Class::MOP::Class
1387       - fixed a number of minor issues which came up in the
1388         error/edge-case tests
1389
1390     * Class::MOP::Attribute
1391       - fixed a number of minor issues which came up in the
1392         error/edge-case tests
1393
1394     * examples/
1395       - fixing the AttributesWithHistory example, it was broken.
1396
1397 0.06 Thurs Feb. 9, 2006
1398     * metaclass
1399       - adding new metaclass pragma to make setting up the
1400         metaclass a little more straightforward
1401
1402     * Class::MOP
1403       - clean up bootstrapping to include more complete
1404         attribute definitions for Class::MOP::Class and
1405         Class::MOP::Attribute (accessors, readers, writers,
1406         etc.) ... it is redundant, but is useful meta-info
1407         to have around.
1408
1409     * Class::MOP::Class
1410       - fixing minor meta-circularity issue with &meta, it
1411         is now more useful for subclasses
1412       - added &get_attribute_map as an accessor for the
1413         hash of attribute meta objects
1414       - &compute_all_applicable_attributes now just returns
1415         the attribute meta-object, rather than the HASH ref
1416         since all the same info can be gotten from the
1417         attribute meta-object itself
1418           - updated docs & tests to reflect
1419       - added &clone_instance method which does a deep clone
1420         of the instance structure created by &construct_instance
1421           - added docs & tests for this
1422           - added Clone as a dependency
1423       - added &new_object and &clone_object convience methods to
1424         return blessed new or cloned instances
1425           - they handle Class::MOP::Class singletons correctly too
1426           - added docs & tests for this
1427       - cleaned up the &constuct_class_instance so that it behaves
1428         more like &construct_instance (and managed the singletons too)
1429       - added the &check_metaclass_compatibility method to make sure
1430         that metaclasses are upward and downward compatible.
1431           - added tests and docs for this
1432
1433     * examples/
1434       - adjusting code to use the &Class::MOP::Class::meta
1435         fix detailed above
1436       - adjusting code to use the metaclass pragma
1437
1438 0.05 Sat Feb. 4, 2006
1439     * Class::MOP::Class
1440       - added the &attribute_metaclass and &method_metaclass
1441         attributes which contain a metaclass name to use for
1442         attributes/methods respectively
1443
1444     * Class::MOP
1445       - bootstrap additional attributes for Class::MOP::Class
1446
1447     * examples/
1448       - adjusted the example code and tests to use the new
1449         &attribute_metaclass feature of Class::MOP::Class
1450       - added new example:
1451         - LazyClass
1452
1453 0.04 Fri Feb. 3, 2006
1454     * Class::MOP::Class
1455       - some documentation suggestions from #perl6
1456
1457     * Class::MOP::Attribute
1458       - improved error messages
1459
1460     * examples/
1461       - added new examples:
1462         - AttributesWithHistory
1463         - ClassEncapsultedAttributes
1464
1465 0.03 Fri Feb. 3, 2006
1466     - converted to Module::Build instead of EU::MM
1467
1468     * Class::MOP::Attribute
1469       - refactored method generation code
1470       - attributes are now associated with class directly
1471
1472     * examples/
1473       - refactored the InsideOut example to take advantage
1474         of the Class::MOP::Attribute refactoring
1475       - changed example files to .pod files and hide thier
1476         package names from PAUSE (I don't want to own these
1477         namespaces really, they are just examples)
1478
1479 0.02 Thurs Feb. 2, 2006
1480     - moving examples from t/lib/* to examples/*
1481         - adding POD documentation to the examples
1482
1483 0.01 Thurs Feb. 2, 2006
1484     - Initial release