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