some tweaks for release
[gitmo/Class-MOP.git] / Changes
CommitLineData
7c90a1a8 1Revision history for Perl extension Class-MOP.
b817e248 2
a780a6ff 30.50 Fri. Dec. 21, 2007
6ff0d647 4 * Class::MOP::Class
5 - fixed bug in immutable to make sure that
6 transformation arguments are saved
7 correctly (mst)
8
9 * Class::MOP::Immutable
10 - fixed a bug (see above)
11
12 * Class::MOP::Attribute
13 - some doc updates
14
30b8af04 150.49 Fri. Dec. 14, 2007
6ff0d647 16 !! Class::MOP now loads ~70% faster !!
30b8af04 17 !! with XS speedups (thanks konobi) !!
18
19 * Class::MOP
20 - removed the dependency on B
21 - added two XS functions (thanks konobi)
22 - get_code_info($code) which replaces all
23 the B fiddling we were doing with
24 faster/leaner XS level fiddling
25 - check_package_cache_flag($pkg_name) which
26 returns the PL_sub_generation variable to
27 be used to help manage method caching.
28
29 NOTE:
30 In 5.10 or greater this will actually
31 use the mro::get_pkg_gen instead to give
32 even more accurate caching information.
33 blblack++ for that stuff :)
34
6c9f390e 35 * Class::MOP::Class
36 - added the &subclasses method (thanks rlb)
30b8af04 37 - added the update_package_cache_flag and
38 reset_package_cache_flag which help keep
39 track of when we need to re-fetch the
40 method map.
41 - Several small improvements to take advantage
42 of the new method map caching features
4c4a6c41 43
1b8b3e09 440.48 Mon. Nov. 26, 2007
d14f6cbe 45 * Class::MOP::Attribute
46 - fixed get_read/write_method to handle the
47 HASH ref case, which makes the
48 get_read/write_method_ref handle it too.
49 - added more tests for this
50
742fb371 510.47 Sat. Nov. 24, 2007
52 * Class::MOP::Attribute
53 - fixed misspelling in get_write_method_ref
78d9bb38 54 - added more tests for this
742fb371 55
fe7c0b15 560.46 Fri. Nov. 23, 2007
b7bdffc3 57 * Class::MOP::Class
58 - added the linearized_isa method instead of constantly
59 pruning duplicate classes (this will be even more
60 useful in the 5.10-compat version coming soon)
5da16d1b 61
62 * Class::MOP::Attribute
63 - added the get_read_method_ref and get_write_method_ref
64 methods which allow you to retrieve a CODE ref which
65 can always be used to read or write an attribute.
b7bdffc3 66
1a5cc82e 670.45 Thurs. Nov. 13, 2007
232c4e13 68 * Class::MOP::Attribute
69 - Fix error message on confess (groditi)
70
544143b2 710.44 Thurs. Nov. 13, 2007
72 - Apparently I didn't make dist correctly (groditi)
73
c0aeeb91 740.43 Thurs. Nov. 13, 2007
b08fd50c 75 * Class::MOP
1d68af04 76 - Add support for the 'builder' attribute (groditi)
77
b08fd50c 78 * Class::MOP::Class
79 - optimise metaclass-already-exists check in
80 construct_class_instance (groditi)
81 - duplicate check into initialize to save a
82 call through (groditi)
83
1d68af04 84 * Class::MOP::Attribute
85 - Add support for the 'builder' attribute (groditi)
8768ecf3 86 - Make predicates check for the existence of a value, not whether
b08fd50c 87 it is defined (groditi)
8768ecf3 88
89 * Class::MOP::Instance
90 - Make predicates check for the existence of a value, not whether
b08fd50c 91 it is defined (groditi)
8768ecf3 92
565f0cbb 93 * Class::MOP::Method::Accessor
94 - made this a subclass of Class::MOP::Method::Generated
95 - removed the relevant attributes
96
97 * Class::MOP::Method::Constructor
98 - fixed the cached values we had to be more sane
99 - made this a subclass of Class::MOP::Method::Generated
100 - fixed generated constructor so it properly handles
101 subclasses now.
102 - added tests for this
103 - added the option to allow for both inlined and
104 non-inlined constructors.
b08fd50c 105 - Update inlined methods for builder and predicate changes (groditi)
565f0cbb 106
107 * Class::MOP::Method::Generated
108 - added this class as an abstract base for the
109 Class::MOP::Method::{Constructor,Accessor} classes
110 - added tests for this
111
b08fd50c 112 *t/
113 - Alter tests (005, 014 020, 021) for new builder addition (groditi)
114 - Tests for new predicate behavior (and corrections to old tests) (groditi)
115
116 *examples/
117 - Update ArrayRef based class example to work with predicate changes
118
367183c4 1190.42 Mon. July 16, 2007
9195ddff 120 !!! Horray for mst, he fixed it !!!
121
92af7fdf 122 * Class::MOP::Package
123 - alter symbol table handling to deal with 5.8.x and 5.9.x
9195ddff 124
92af7fdf 125 * t/
9195ddff 126 - Get rid of the crappy workaround from 0.40/41
92af7fdf 127
829f7554 1280.41 Sun. July 15, 2007
129 * t/
130 Arghh!!! My TODO test didn't work, so I handle
131 it manually now so that people can use this
132 with 5.9.5/bleadperl without issue.
133
1d7205b8 1340.40 Tues, July 3, 2007
9f88b8ff 135 * t/
136 ~ marked a test in 003_methods.t as TODO
1d7205b8 137 for perl 5.9.5 (this test is irrelvant to
138 the module functioning on 5.9.5 for the most
139 part anyway)
9f88b8ff 140
28acb786 1410.39 Mon. June 18, 2007
b817e248 142 * Class::MOP::Immutable
0ac992ee 143 - added make_metaclass_mutable + docs (groditi)
144 - removed unused variable
d9586da2 145 - added create_immutable_transformer
146 necessary for sane overloading of immutable behavior
147 - tests for this (groditi)
0ac992ee 148
149 * Class::MOP::Class
150 - Immutability can now be undone,
151 added make_mutable + tests + docs (groditi)
04dd7510 152 - Massive changes to the way Immutable is done
153 for details see comments next to make_immutable
154 This fixes a bug where custom metaclasses broke
155 when made immutable. We are now keeping one immutable
156 metaclass instance per metaclass instead of just one
157 to prevent isa hierarchy corruption. Memory use will go
158 up, but I suspect it will be neglible.
159 - New tests added for this behavior. (groditi)
7c90a1a8 160
c0fcd6ab 1610.38 Thurs. May 31, 2007
823a5d31 162 ~~ More documentation updates ~~
c81de280 163
823a5d31 164 * Class::MOP::Package
165 - we now deal with stub methods properly
166 - added tests for this
c0fcd6ab 167 - fixed some tests failing on 5.9.5 (thanks blblack)
c81de280 168
b25109b1 169 * Class::MOP::Attribute
170 - added get_read_method and get_write_method
c81de280 171 thanks to groditi for this code, tests
172 and docs.
b25109b1 173 - added tests and POD for this
795a0c8b 174
175 * Class::MOP::Class
176 - fixed RT issue #27329, clone object now
177 handles undef values correctly.
178 - added tests for this
d4ba1677 179 - Corrected anon-class handling so that they
180 will not get reaped when instances still
181 exist which need to reference them. This is
182 the correct behavior, hopefully this is an
183 obscure enough feature that there are not too
184 many work arounds out in the wild.
185 - added tests for this by groditi
95514cb4 186 - updated docs to explain this
187
188 * metaclass
c0fcd6ab 189 - load custom metaclasses automatically (thanks groditi)
f2266181 190 - added tests for this behavior
a06797b0 191
3dc99d93 1920.37 Sat. March 10, 2007
448b6e55 193 ~~ Many, many documentation updates ~~
194
195 * Class::MOP
196 - added &load_class and &is_class_loaded
197 - added tests and docs for these
2367814a 198
9363ea89 199 * Class::MOP::Attribute
200 - default now checks the instance with defined to
201 avoid setting off bool-overloads (found by Carl Franks)
202
c23184fc 2030.37_002
204 * /t
205 - bad name in a test, causing meaningless failuress.
206 No other changes.
207
2080.37_001
209
210 ~~ GLOBAL CHANGES ~~
211 - All attribute names are now consistent and follow Perl 6
212 style (prefixed with the sigil, and ! as the twigil for
213 private attrs). This should not affect any code, unless
214 you broke encapsulation, in which case, it is your problem
215 anyway.
216
217 !! Class::MOP::Class::Immutable has been removed
218
219 * Class::MOP::Method::Constructor
220 - this has been moved out of Class::MOP::Class::Immutable
221 and is a proper subclass of Class::MOP::Method now.
222
223 * Class::MOP::Class
224 - this module now uses Class::MOP::Immutable for the
225 immutable transformation instead of
226 Class::MOP::Class::Immutable.
227
228 + Class::MOP::Immutable
229 - this module now controls the transformation from a mutable
230 to an immutable version of the class. Docs for this will
231 be coming eventually.
232
233
cdc1ecba 2340.36 Sun. Nov. 5, 2006
a651e249 235 * Class::MOP::Class
236 - added a few 'no warnings' lines to keep annoying
237 (and meaningless) warnings from chirping during
238 global destruction.
0870928c 239
240 * Class::MOP
241 - some more bootstrapping is now done on the new
242 classes
243
244 * Class::MOP::Class::Immutable
245 *** API CHANGE ***
246 - constructor generation is now handled by
247 the Class::MOP::Method::Constructor class
248
249 * Class::MOP::Method::Constructor
250 - created this to handle constructor generation
251 in Class::MOP::Class::Immutable
252
253 * Class::MOP::Attribute
254 *** API CHANGE ***
255 - attributes now delegate to the
256 Class::MOP::Method::Accessor to generate
257 accessors
258
259 * Class::MOP::Method::Accessor
260 - all accessor generation functions from
261 Class::MOP::Attribute have been moved here
a651e249 262
80f00c79 2630.35 Sat. Sept. 30, 2006
8745cf22 264
265 * scripts/class_browser.pl
266 - initial prototype of a class browser, more
267 on this to come. Comments and patches are
268 very much welcome.
b1897d4d 269
270 * Class::MOP
3e86c902 271 - All Class::MOP::* accessors are no longer
272 re-generated in the bootstrap, instead
6d2118a4 273 they are aliased from the originals
6d2118a4 274 - fixed tests to reflect
b1897d4d 275 - added Class::MOP::Method (and its subclasses)
276 to the bootstrap
277 - adjusted tests for this
86482605 278 - added the Class::MOP::Instance attributes
279 to the bootstrap
b1897d4d 280
281 * Class::MOP::Method
282 *** API CHANGE ***
283 - methods are no longer blessed CODE refs
284 but are actual objects which can be CODE-ified
285 - adjusted tests to compensate
86482605 286 - adjusted docs for this
b1897d4d 287
288 * Class::MOP::Class
289 - changed how methods are dealt with to
290 encapsulate most of the work into the
291 &get_method_map method
292 - made several adjustments for the change
293 in Class::MOP::Method
294 - &add_attribute now checks if you are adding
295 a duplicate name, and properly removes the
296 old one before installing the new one
297 - added tests for this
86482605 298 - adjusted docs for this
b1897d4d 299
300 * Class::MOP::Class::Immutable
301 - added caching of &get_method_map
302 - fixed issue with &get_package_symbol
303 - cleaned up the methods that die (patch by David Wheeler)
304
305 * Class::MOP::Package
306 - added filtering capabilities to
307 &list_all_package_symbols
308
a549ce50 3090.34 Sat. Aug. 26, 2006
c4260b45 310 * Class::MOP::Class
311 - added the %:methods attribute, which like
312 the $:version and such just actually goes
313 to the symbol table to get it's stuff.
314 However, it makes the MOP more complete.
88dd563c 315 ** API CHANGE **
316 - The &create method now requires that all
317 but the package name now is passed in as
318 named parameters. See docs for more info.
319 - updated docs and tests for this
c4260b45 320
321 * Class::MOP::Object
322 - added &dump method to easily Data::Dumper
323 an object
324
325 * Class::MOP
326 - cleaned up the initialization of attributes
327 which do not store things in the instance
328 - added the %:methods attribute definition to
329 the bootstrap
88dd563c 330
331 ~ lots of misc. test cleanup
c4260b45 332
56e8dd5d 3330.33 Sat. Aug. 19, 2006
be7677c7 334 * Class::MOP::Class
335 - moved the metaclass cache out of here
336 and it is now in Class::MOP itself.
56e8dd5d 337
338 * Class::MOP
339 - moved all the metaclass cache stuff here
340 - fixed all tests for this
be7677c7 341
148b4697 342 * Class::MOP::Attribute
343 - reference values (other than CODE refs)
344 are no longer allowed for defaults
345 - added tests for this
56dcfc1a 346
347 * Class::MOP::Package
348 - fixed an issue with perl 5.8.1 and how it deals
e3a2c885 349 with symbol tables. The namespace hash is now
350 always reloaded from the symbol table.
351
352 ~ lots of misc. documentation cleanup
1396f86b 353
716c5765 3540.32 Sat. Aug. 12, 2006
6e57504d 355 + added Class::MOP::Object so that the
356 metamodel is more complete (and closer
357 to what Perl 6 will probably be).
358
9ca19585 359 * Class::MOP::Package
360 - refactored entire class, this is now
361 the primary gateway between the metaclass
362 and the Perl 5 symbol table
363 - added many tests for this
6e57504d 364 - this class is now a subclass of
365 Class::MOP::Object
716c5765 366 - added some tests to reflect this
9ca19585 367
368 * Class::MOP::Class
369 - refactored all symbol table access to
370 use Class::MOP::Package methods instead
f0480c45 371
372 * Class::MOP::Module
373 - adding the $:version attribute in the bootstrap
374 so that Module has a version as an attribute
375 - see comment in Class::MOP for details
376 - added the $:authority attribute to this module
377 as well as an &identifier method, to bring us
378 ever closer to Perl 6 goodness
716c5765 379 - I have added $AUTHORITY to all the modules
380 - added tests for this
9ca19585 381
f0480c45 382 * Class::MOP::Instance
383 - added &deinitialize_slot for removing slots
384 from an instance
385 - added tests for this
9ca19585 386
387 * Class::MOP::Attribute
388 - added support for &deinitialize_slot for removing
389 slots from an instance
390 - added tests for this
391
1a09d9cc 3920.31 Sat. July 15, 2006
393
b679e644 394 * Class::MOP::Class
395 - added &find_method_by_name to locate a method
396 anywhere within the class hierarchy
397
398 * Class::MOP::Attribute
399 - added &set_value and &get_value for getting
400 the value of the attribute for a particular
401 instance.
402
373a16ae 4030.30 Wed. July 5, 2006
404 ---------------------------------------
405 This is the first version of Class::MOP
406 to introduce the immutable features which
407 will be used for optimizating the MOP.
408 This support should still be considered
409 experimental, but moving towards stability.
410 ---------------------------------------
e0a82090 411
373a16ae 412 * Created Class::MOP::Class::Immutable
be960ba1 413
373a16ae 414 * Created the Class::MOP::Package and
415 Class::MOP::Module classes to more
416 closely conform to Perl 6's meta-model
e0a82090 417
418 * Class::MOP::Class
419 - now inherits from Class::MOP::Module
420 - several methods moved to ::Module and
421 ::Package and now inherited
422 - added tests for this
c0cbf4d9 423
424 * Class::MOP::Instance
425 - added an is_inlinable method to allow other
426 classes to check before they attempt to optimize.
be960ba1 427 - added an inline_create_instance to inline
428 instance creation (of course)
429
2ba153a9 430 ** API CHANGE **
431 - the Class::MOP::Class::*_package_variable
432 methods are all now methods of Class::MOP::Package
433 and called *_package_symbol instead. This is
434 because they are now more general purpose symbol
435 table manipulation methods.
e0a82090 436
cdfaa4cc 4370.29_02 Thurs. June 22, 2006
438 ++ DEVELOPER RELEASE ++
df7b4119 439 * Class::MOP::Class
440 - small change in &create so that it behaves
441 properly when inherited
cdfaa4cc 442 - small fix to &clone_instance
df7b4119 443
667cecf3 4440.29_01 Fri. May 12, 2006
445 ++ DEVELOPER RELEASE ++
446 - This release works in combination with
447 Moose 0.09_01, it is a developer release
448 because it introduces a new instance
449 sub-protocol and has not yet been
450 optimized.
451
40483095 452 * Class::MOP::Class
453 - anon-classes are now properly garbage collected
454 - added tests for this
195f5bf8 455 - improved method modifier wrapping
40483095 456
2bab2be6 457 * Class::MOP::Instance
1becdfcc 458 - added new instance protocol
2bab2be6 459 - added tests for this
460 - changed all relevant modules and examples
461 - Class::MOP::Class
462 - Class::MOP::Attribute
463 - examples/*
464
1becdfcc 465 * metaclass
466 - you no longer need to specify the metaclass
467 itself, if it is not there, Class::MOP::Class
468 is just assumed
469 - updated tests for this
470
471 * examples/
472 - added ArrayBasedStorage example to show
473 instance storage using ARRAY refs instead of
474 HASH refs.
475 - added tests for this
476 - InsideOutClass is totally revised using the
477 new instance protocol
478 - added more tests for this
479
93b4e576 4800.26 Mon. April 24, 2006
e7f732e4 481 * Class::MOP::Class
482 - added find_attribute_by_name method
483 - added tests and docs for this
56a0b530 484 - some small optimizations
485
486 * Class::MOP::Attribute
487 - some small optimizations
e7f732e4 488
46666f33 4890.25 Thurs. April 20, 2006
587aca23 490 * Class::MOP::Class
491 - added create_anon_class for creating anonymous classes
492 - added tests for this
493 - added get_all_metaclasses, get_all_metaclass_names
494 and get_all_metaclass_instances method to allow
495 access to all the cached metaclass objects.
bd4e03f9 496 - attribute slot initialization is now the responsibility
497 of the attribute itself, and construct_instance now
498 delegates appropriately
499
500 * Class::MOP::Attribute
501 - attribute slot initialization is now the responsibility
502 of the attribute itself, so we added a method for it
503 called initialize_instance_slot
fed4cee7 504
505 * examples/
506 - adjusted all the examples to use the new attribute
507 initialize_instance_slot method
587aca23 508
1daaa2b2 5090.24 Tues. April 11, 2006
8c936afc 510 * Class::MOP::Class
511 - cleaned up how the before/after/around method
512 modifiers get named with Sub::Name
513
b9dfbf78 5140.23 Thurs. March 30, 2006
a977cf65 515 * Class::MOP::Class
516 - fixed the way attribute defaults are handled
517 during instance construction (bug found by chansen)
b9dfbf78 518
519 * Class::MOP::Attribute
520 - read-only accessors ('reader') will now die if
521 passed more than one argument (attempting to write
522 to them basically)
523 - added tests for this
524 - adjusted all /example files to comply
a977cf65 525
f9eba090 5260.22 Mon. March 20, 2006
0eff2c16 527 * Class::MOP::Class
528 - localized $@ in the *_package_variable functions
529 because otherwise, it does ugly things in Moose.
530 - added test case for this
531
1988e85e 5320.21 Wed. March 15, 2006
2f6d5412 533 * Class::MOP::Class
534 - fixed issue where metaclasses are reaped from
535 our cache in global destruction, and so are not
536 available in DESTORY calls
537
96ceced8 5380.20 Thurs. March 2, 2006
d3cb0d4a 539 - removed the dependency for Clone since
540 we no longer to deep-cloning by default.
a4258ffd 541
542 * Class::MOP::Method
96ceced8 543 - added &package_name, &name and
544 &fully_qualified_name methods, some of
a4258ffd 545 which were formerly private subs in
546 Class::MOP::Class
547
548 * Class::MOP::Method::Wrapped
549 - allows for a method to be wrapped with
550 before, after and around modifiers
551 - added tests and docs for this feature
d3cb0d4a 552
553 * Class::MOP::Class
58d75218 554 - improved &get_package_symbol
96ceced8 555 - &version and &superclasses now use it
a4258ffd 556 - methods are now blessed into Class::MOP::Method
557 whenever possible
a4258ffd 558 - added methods to install CLOS-style method modifiers
559 - &add_before_method_modifier
560 - &add_after_method_modifier
561 - &add_around_method_modifier
562 - added tests and docs for these
96ceced8 563 - added &find_next_method_by_name which finds the
564 equivalent of SUPER::method_name
d3cb0d4a 565
1c020571 5660.12 Thurs. Feb 23, 2006
d89c0fad 567 - reduced the dependency on B, no need to always
568 have the latest
569
1c020571 570 * examples/
571 - added docs to the C3 method dispatch order test
572 - fixed missing Algorithm::C3 dependency by making
573 the test skip if it is not installed
574
0dea7280 5750.11 Mon Feb. 20, 2006
f3f5bd34 576 * examples/
577 - added example of changing method dispatch order to C3
a27ae83f 578
579 * Class::MOP::Class
19d4b5b8 580 - changed how clone_instance behaves, it now only does a
581 shallow clone (see docs for more details)
a27ae83f 582 - added docs and tests
f3f5bd34 583
3bf7644b 5840.10 Tues Feb. 14, 2006
585 ** This release was mostly about writing more tests and
586 cleaning out old and dusty code, the MOP should now
587 be considered "ready to use".
588
22286063 589 - adding more tests to get coverage up a little higher,
590 mostly testing errors and edge cases.
591 - test coverage is now at 99%
aa448b16 592
593 * Class::MOP
594 - no longer optionally exports to UNIVERSAL::meta or
595 creates a custom metaclass generator, use the
596 metaclass pragma instead.
22286063 597
598 * Class::MOP::Class
599 - fixed a number of minor issues which came up in the
600 error/edge-case tests
601
602 * Class::MOP::Attribute
603 - fixed a number of minor issues which came up in the
604 error/edge-case tests
605
0b8eb325 606 * examples/
ea263060 607 - fixing the AttributesWithHistory example, it was broken.
663f8198 608
550d56db 6090.06 Thurs Feb. 9, 2006
677eb158 610 * metaclass
550d56db 611 - adding new metaclass pragma to make setting up the
677eb158 612 metaclass a little more straightforward
7b31baf4 613
614 * Class::MOP
615 - clean up bootstrapping to include more complete
616 attribute definitions for Class::MOP::Class and
617 Class::MOP::Attribute (accessors, readers, writers,
618 etc.) ... it is redundant, but is useful meta-info
619 to have around.
677eb158 620
99e5b7e8 621 * Class::MOP::Class
622 - fixing minor meta-circularity issue with &meta, it
623 is now more useful for subclasses
7b31baf4 624 - added &get_attribute_map as an accessor for the
625 hash of attribute meta objects
c9e77dbb 626 - &compute_all_applicable_attributes now just returns
627 the attribute meta-object, rather than the HASH ref
628 since all the same info can be gotten from the
629 attribute meta-object itself
630 - updated docs & tests to reflect
5f3c057a 631 - added &clone_instance method which does a deep clone
632 of the instance structure created by &construct_instance
633 - added docs & tests for this
550d56db 634 - added Clone as a dependency
5f3c057a 635 - added &new_object and &clone_object convience methods to
636 return blessed new or cloned instances
2a7575a6 637 - they handle Class::MOP::Class singletons correctly too
5f3c057a 638 - added docs & tests for this
2a7575a6 639 - cleaned up the &constuct_class_instance so that it behaves
640 more like &construct_instance (and managed the singletons too)
550d56db 641 - added the &check_metaclass_compatibility method to make sure
642 that metaclasses are upward and downward compatible.
643 - added tests and docs for this
5f3c057a 644
99e5b7e8 645 * examples/
646 - adjusting code to use the &Class::MOP::Class::meta
647 fix detailed above
677eb158 648 - adjusting code to use the metaclass pragma
99e5b7e8 649
aa9c883e 6500.05 Sat Feb. 4, 2006
2e41896e 651 * Class::MOP::Class
652 - added the &attribute_metaclass and &method_metaclass
351bd7d4 653 attributes which contain a metaclass name to use for
2e41896e 654 attributes/methods respectively
351bd7d4 655
656 * Class::MOP
657 - bootstrap additional attributes for Class::MOP::Class
2e41896e 658
659 * examples/
660 - adjusted the example code and tests to use the new
661 &attribute_metaclass feature of Class::MOP::Class
aa9c883e 662 - added new example:
663 - LazyClass
2e41896e 664
d7c2cbe3 6650.04 Fri Feb. 3, 2006
d6fbcd05 666 * Class::MOP::Class
667 - some documentation suggestions from #perl6
668
669 * Class::MOP::Attribute
670 - improved error messages
671
672 * examples/
673 - added new examples:
674 - AttributesWithHistory
d7c2cbe3 675 - ClassEncapsultedAttributes
343203ee 676
9ec169fe 6770.03 Fri Feb. 3, 2006
678 - converted to Module::Build instead of EU::MM
679
680 * Class::MOP::Attribute
681 - refactored method generation code
682 - attributes are now associated with class directly
683
f71f4295 684 * examples/
9ec169fe 685 - refactored the InsideOut example to take advantage
686 of the Class::MOP::Attribute refactoring
f71f4295 687 - changed example files to .pod files and hide thier
688 package names from PAUSE (I don't want to own these
689 namespaces really, they are just examples)
9ec169fe 690
a57c7fa2 6910.02 Thurs Feb. 2, 2006
692 - moving examples from t/lib/* to examples/*
693 - adding POD documentation to the examples
694
a2e85e6c 6950.01 Thurs Feb. 2, 2006
92af7fdf 696 - Initial release