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