Clarify change
[gitmo/Class-MOP.git] / Changes
CommitLineData
7c90a1a8 1Revision history for Perl extension Class-MOP.
b817e248 2
6a6f7a2f 30.72
4 * Class::MOP::Package
5 - Pass options to _new, so subclass' attributes can be
6 initialized (Sartak)
aa906e42 7 * Class::MOP::Method
adb2b128 8 - In the docs, indicate that package_name and name are required
9 when calling ->wrap (Stefan O'Rear)
6a6f7a2f 10
6b5ac420 110.71_02 Fri, December 5, 2008
62a0a0f3 12 * Class::MOP::Immutable
13 - Added a new attribute, inlined_constructor, which is true if
14 the constructor was inlined.
fdc6771b 15 * Class::MOP::Package
16 - Make get_all_package_symbols return a hash ref in scalar
17 context and deprecate calling it in list context with a
18 warning. (Florian Ragwitz)
19 * MOP.xs
20 - Various improvements and refactoring, making things more robust and
21 easier to maintain. (Florian Ragwitz)
62a0a0f3 22
34147f49 230.71_01 Wed, December 3, 2008
25a5f083 24 * Class::MOP::Method
25 - Add an "execute" method to invoke the body so
26 we can avoid using the coderef overload (Sartak)
41885bab 27 * Class::MOP::Immutable
9ec62360 28 - When we memoize methods, get their results lazily
29 to remove some compile-time cost (Sartak)
41885bab 30 - Small speedup from eliminating several method
31 calls (Sartak)
05e183d1 32 * Class::MOP::Class
33 - Some small internal tweaks to try to reduce the number of
34 times we call get_method_map when bootstrapping the MOP. This
35 might make loading Class::MOP (and Moose) a little
36 faster. (Dave Rolsky)
52e5f955 37 - Implemented an optional XS version of get_method_map. Mostly
38 taken from a patch by Goro Fuji (rt.cpan.org #41080), with
39 help form Florian Ragwitz. (Dave Rolsky)
7ef2f4b7 40 - Make the behaviour of of get_all_package_symbols (and
41 therefore get_method_map) consistent for stub methods. Report
42 and test by Goro Fuji (rt.cpan.org #41255). (Florian Ragwitz)
25a5f083 43
96185d43 440.71 Wed November 26, 2008
d652fbd5 45 * Class::MOP::Class
46 * Class::MOP::Module
47 - Actual package creation has moved upward from
48 Class to Module so that Moose roles can share
49 the code (Sartak)
50
88b8ac17 510.70_01 Mon, November 19, 2008
52 * Class::MOP
53 - Fixes for failures with blead (Florian Ragwitz)
54 - Silenced compiler warnings (Florian Ragwitz)
55
560.70 Fri, November 14, 2008
7329b9e2 57 * Class::MOP
58 - Fixed an odd corner case where the XS version of
9b1760fc 59 get_all_package_symbols could cause a segfault. This only
7329b9e2 60 happened with inlined constants in Perl 5.10.0 (Florian
61 Ragwitz)
7329b9e2 62
52c685d3 630.69 Fri, November 7, 2008
b88aa2e8 64 * Class::MOP::Method::Wrapped
65 - Added introspection methods for method modifiers (Dave Rolsky)
66
67
4a9e02e8 680.68 Fri October 24, 2008
dfbc4d4c 69 * Class::MOP
70 - Make load_class require by file name instead of module name.
71 This stops confusing error messages when loading '__PACKAGE__'.
72 (Florian Ragwitz)
5a24cf8a 73 - Add load_one_class_of function to enable you to load one of a
74 list of classes, rather than having to call load_class multiple
75 times in an eval. (t0m)
dfbc4d4c 76
5f5ee28a 770.67 Tue October 14, 2008
2e7eb96b 78 * Class::MOP::Class
79 - Call a method on the class after setting the superclass list
80 so that we can get Perl to detect cycles before MRO::Compat
81 spirals into an infinite loop (sartak)
82 - Reported by Schwern, [rt.cpan.org #39001]
34d04967 83 - In create(), pass unused options on to initialize()
84 - added test for this
2e7eb96b 85
34d04967 860.66 Sat September 20, 2008
fe05cbbe 87 !! This release has an incompatible change regarding !!
88 introspection of a class's method with Class::MOP::Class !!
89
9e9e6b8f 90 * Tests and XS
91 - We (us maintainers) now run all tests with XS and then without
92 XS, which should help us catch skew between the XS/pure Perl
e073e667 93 code. (Dave Rolsky)
9e9e6b8f 94
91b73829 95 * Class::MOP::Class
fe05cbbe 96 ! The alias_method method has been deprecated. It now simply
1190621f 97 calls add_method instead. There is no distinction between
98 aliased methods and "real" methods.
fe05cbbe 99
100 This means that methods added via alias_method now show up as
7143219b 101 part of the class's method list/map. This is a backwards
fe05cbbe 102 incompatible change, but seems unlikely to break any
103 code. Famous last words. (Dave Rolsky)
91b73829 104
155f0cba 105 * Class::MOP::Class
106 - Fixed the spelling of "compatibility", but we still have a
107 "check_metaclass_compatability" method for backwards
108 compatibility.
9e9e6b8f 109
94278c1b 1100.65 Mon September 1, 2008
111 For those not following the series of dev releases, the changes
8b9106cf 112 from 0.64 from 0.65 can mostly be summed up as a lot performance
94278c1b 113 improvements by nothingmuch, including new optional XS versions of
114 some methods. Also, Class::MOP now works _without_ any XS modules,
115 for sad systems without a compiler.
116
988fb42e 117 * Class::MOP::Method
118 - Added name and package_name XS accessors, and make sure all
119 the XS and Perl versions work the same way. (Dave Rolsky)
120
121 * MOP.xs
122 - The XS versions of various methods just returned undef when
123 called class methods, rather than dying like the pure Perl
124 versions. (Dave Rolsky)
125
13ac653a 1260.64_07 Fri August 29, 2008
400982e3 127 * Class::MOP
13ac653a 128 - Silenced warnings that managed to break Moose tests when XS
129 was loaded. (Dave Rolsky)
130 - Some XS versions of methods were ignored because of typos in
131 MOP.xs. (Dave Rolsky)
400982e3 132
13ac653a 1330.64_06 Mon August 25, 2008
9457b596 134 * Class::MOP (MOP.xs)
135 - Another MS VC++ fix, cannot declare a variable in the middle
136 of a scope (Taro Nishino).
137
1380.64_05 Sun August 24, 2008
2a755fe8 139 * Class::MOP
140 - None of the dev releases actually loaded the XS properly, but
141 we silently fell back to the pure Perl version of the
142 code. (Dave Rolsky)
143
144 * Class::MOP (MOP.xs)
145 - Replaced some code that used functions not available on Visual
146 C++ with some Perl XS API bits (Dave Rolsky).
147
f65af096 1480.64_04 Sat August 23, 2008
9ebc265d 149 * Class::MOP::Class
f65af096 150 - Workaround a bug in 5.8.1's goto sub (nothingmuch)
151
152 * pod.t and pod_coveraget.t
153 - These are no longer shipped with the tarball because of bogus
154 failures from CPAN testers. (Dave Rolsky)
9ebc265d 155
df7077cd 1560.64_03 Thu August 21, 2008
157 * Class::MOP::Package
158 - Some (legit) code was misparsed by earlier 5.8.x
159 releases. (nothingmuch)
160
161 * Class::MOP
162 - Fix a constant in void context warning (nothingmuch)
163
09ed1ec5 1640.64_02 Thu August 21, 2008
64c591d3 165 * Makefile.PL and Class::MOP
4dde2f23 166 - Explicitly require Perl 5.8.0+ (Dave Rolsky)
167
168 * Makefile.PL
169 - Add missing prereqs that got lost in the switch away from
170 Module::Install.
64c591d3 171
09ed1ec5 172 * Class::MOP::Instance
173 - New method - get_all_attributes (nothingmuch)
174
1750.64_01 Wed August 20, 2008
f125b31e 176 * Makefile.PL
177 - We now check to see if you have a compiler. If you don't, the
178 module installs without some XS bits, but will work the same
179 as with XS. This should make it easier to install on platforms
180 without a compiler (like Windows). (Dave Rolsky)
2e5c1a3f 181
40b3c18f 182 * many modules
7f799c13 183 - Perl 6 style attribute naming replaced with sane style ('methods', not
184 '%!methods'). These changes should not impact any existing API uses.
185 (nothingmuch).
186
187 * many modules
40b3c18f 188 - Quite a number of optimizations based on profiling, including
189 allowing constructors to take hash references instead of
190 hashes, duplicating some frequently used code in XS, and
191 making constructors immutable. These changes should not impact
192 any existing API uses. (nothingmuch)
193
7f799c13 194 * Many modules
195 - Constructors now respect the meta attributes of their subclasses,
196 facilitating MOP extensibility. More related changes will happen in the
197 next several releases. (nothingmuch)
198
40b3c18f 199 * Class::MOP::Class
7f799c13 200 - New method - get_all_methods, replaces the deprecated
201 compute_all_applicable_methods. get_all_attributes provided for
202 consistency (nothingmuch)
203 - New method - wrap_method was refactored out of get_method_map
204 (nothingmuch)
205 - New API for meta instance invalidation - invalidate_meta_instance,
206 invalidate_meta_instances, add_dependent_meta_instance,
207 remove_dependent_meta_instance, called automatically when attribute
208 definitions change and allows notification of dependent subclasses.
209 (nothingmuch)
40b3c18f 210
7202116b 2110.64 Sun August 3, 2008
84bc89b3 212 * Class::MOP::Immutable
7202116b 213 - fixing subtle edge case in immutable when you
84bc89b3 214 call ->meta (stevan)
7202116b 215 - clean up option processing (nothingmuch)
216
217 * Class::MOP::Instance
218 - inlined initialize slot didn't match
219 non-inlined (nothingmuch)
84bc89b3 220
f079b1eb 2210.63 Mon July 7, 2008
07940968 222 * Class::MOP
223 - load_class will initialize a metaclass even if
224 the class is already loaded (sartak)
225 - load_class now returns the metaclass instance
226 instead of just 1 (sartak)
6e1c8b63 227
f079b1eb 228 * elsewhere
229 - better error messages (sartak and Dave Rolsky)
230
ebce5539 2310.62 Wed June 18, 2008
1377b506 232 - in is_class_loaded, recognize scalar references (as opposed to globs) in
233 the symbol table as methods (these are optimized constant subs)
234
70ad0655 2350.61 Fri. June 13, 2008
236 - Okay, lets give this another try and see if PAUSE
237 recognizes it correct this time.
a023763e 238
2390.60 Thurs. Jun 12, 2008
809a26fc 240 - Fixed a version number issue by bumping all modules
241 to 0.60.
8c5cc782 242
2430.59 Thurs. Jun 12, 2008
d1dba7a1 244 !! Several fixes resulting in yet another 25-30% speedup !!
9b522fc4 245
246 * Class::MOP::Class
247 - now stores the instance of the instance
248 metaclass to avoid needless recomputation
8b49a472 249 and deletes it when the cache is blown
119f3a92 250 - introduce methods to query Class::MOP::Class for
251 the options used to make it immutable as well as
252 the proper immutable transformer. (groditi)
8b49a472 253
254 * Class::MOP::Package
255 - {add, has, get, remove}_package_symbol all
256 now accept a HASH ref argument as well as the
257 string. All internal usages now use the HASH
258 ref version.
f6dc69d2 259
260 * Class::MOP
261 - MOP.xs does sanity checks on the coderef
262 to avoid a segfault
26fcef27 263 - is_class_loaded check now uses code that
264 was improved in Moose's ClassName type
ab5e2f48 265 check (Sartak)
266 - nonsensical (undef, empty, reference) class
267 names now throw a more direct error in
268 load_class (Sartak)
3f7759c1 269 - tests for this and other aspects of
270 load_class (Sartak)
9b522fc4 271
272 * Class::MOP
273 Class::MOP::Class
274 Class::MOP::Method
275 Class::MOP::Method::Wrapped
276 Class::MOP::Attribute
277 - switched usage of reftype to ref because
278 it is much faster
279
352c364f 2800.58 Thurs. May 29, 2008
62781d9f 281 (late night release engineering)--
282
283 - fixing the version is META.yml, no functional
284 changes in this release
285
de0f9e1c 2860.57 Wed. May 28, 2008
d1dba7a1 287 !! Several speedups resulting in 20-25% speedups !!
de0f9e1c 288 || (thanks to konobi, groditi, mst & CataMoose) !!
289
ae234dc6 290 * Class::MOP::Class
291 - made get_method_map use list_all_package_symbols
292 instead of manually grabbing each symbol
de0f9e1c 293 - streamlining &initialize somewhat, since it gets
294 called so much
ae234dc6 295
296 * Class::MOP::Package
297 - made {get, has}_package_symbol not call
298 &namespace so much
de0f9e1c 299 - inlining a few calls to &name with
300 direct HASH access key access
ae234dc6 301 - added get_all_package_symbols to fetch
302 a HASH of items based on a type filter
303 similar to list_all_package_symbols
304 - added tests for this
305
32202ce2 306 * Class::MOP::Method
307 Class::MOP::Method::Constructor
308 Class::MOP::Method::Generated
309 Class::MOP::Method::Accessor
310 - added more descriptive error message to help
311 keep people from wasting time tracking an error
47e20ba2 312 that is easily fixed by upgrading.
32202ce2 313
d1dba7a1 314 * Class::MOP::Immutable
315 - Don't inline a destructor unless the user actually
316 needs one
317 - added tests for this
318
b4009dc1 3190.56 Saturday, May 24, 2008
11b56828 320 * Class::MOP
321 - we now get the &check_package_cache_flag
322 function from MRO::Compat
d7d3f3cb 323 - All XS based functionality now has a
324 Pure Perl alternative
6c34db07 325 - the CLASS_MOP_NO_XS environment variable
d7d3f3cb 326 can now be used to force non-XS versions
6c34db07 327 to always be used
11b56828 328
9e517e01 329 * Class::MOP::Attribute
330 - add has_read_method and has_write_method
d7d3f3cb 331 - get_{read,write}_method_ref now wraps the
def5c0b5 332 anon-sub ref in the method metaclass when
333 possible
334 - added tests for this
d7d3f3cb 335
5f3efd66 336 * Class::MOP::Immutable
d7d3f3cb 337 - added the ability to "wrap" methods when
5f3efd66 338 making the class immutable
d7d3f3cb 339
5f3efd66 340 * Class::MOP::Class
daf8d8bc 341 - now handling the edge case of ->meta->identifier
d7d3f3cb 342 dying by wrapping add_package_symbol to specifically
5f3efd66 343 allow for it to work.
344 - added tests for this
d7d3f3cb 345
346 * Class::MOP::Attribute
6c34db07 347 Class::MOP::Class
d7d3f3cb 348 Class::MOP::Immutable
6c34db07 349 - any time a method meta object is constructed
d7d3f3cb 350 we make sure to pass the correct package and
6c34db07 351 method name information
d7d3f3cb 352
6c34db07 353 * Class::MOP::Method
354 Class::MOP::Method::Wrapped
355 Class::MOP::Method::Generated
356 Class::MOP::Method::Accessor
d7d3f3cb 357 Class::MOP::Method::Consructor
358 - the &wrap constructor method now requires that a
359 'package_name' and 'name' attribute are passed. This
360 is to help support the no-XS version, and will
361 throw an error if these are not supplied.
6c34db07 362 - all these classes are now bootstrapped properly
363 and now store the package_name and name attributes
d7d3f3cb 364 correctly as well
365
366 ~ Build.PL has been removed since the
367 Module::Install support has been removed
9e517e01 368
8adaad20 3690.55 Mon. April 28, 2008
370 - All classes now have proper C3 MRO support
371 - added MRO::Compat as a dependency to allow
372 for the C3 MRO support to Just Work in all
373 perl versions
d7d3f3cb 374
830b326c 375 * Class::MOP::Class
d7d3f3cb 376 - rebless_instance now returns the instance
377 it has just blessed, this is mostly to
830b326c 378 facilitate chaining
d7d3f3cb 379 - set the attr correctly in rebless_instance
6e2a700f 380 when it has no init_arg
77a143ba 381 - tweaked &linear_isa and &class_precedence_list
382 to support c3 classes.
830b326c 383
e0db39d2 3840.54 Fri. March, 14, 2008
8861fab2 385 * Class::MOP
214e4bd7 386 metaclass.pm
8861fab2 387 - making sure that load_class never gets
d7d3f3cb 388 passed a value from @_ or $_ to squash
8861fab2 389 Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
390
09c6e1d2 391 * Class::MOP::Class
392 - make_{immutable,mutable} now return 1
393 (cause Sartak asked)
d7b2249e 394 - improved error handling in ->create method
d7d3f3cb 395 - rebless_instance now takes extra params which
396 will be used to populate values
214e4bd7 397 - added tests for this
d7d3f3cb 398
acce7fd6 399 * Class::MOP::Object
d7d3f3cb 400 - localizing the Data::Dumper configurations so
401 that it does not pollute others (RT #33509)
402
d7b2249e 403 * Class::MOP::Class
404 Class::MOP::Package
405 Class::MOP::Module
406 Class::MOP::Method
407 Class::MOP::Attribute
d7d3f3cb 408 - these classes no longer define their own ->meta,
409 but instead just inherit from Class::MOP::Object
410
d7b2249e 411 * Class::MOP::Instance
d7d3f3cb 412 Class::MOP::Immutable
d7b2249e 413 - these classes now inherit from Class::MOP::Object
d7d3f3cb 414
10dd437b 415 * t/
d7d3f3cb 416 - fixed the filename length on several
10dd437b 417 test files so we install on VMS better
418 (RT #32295)
d7d3f3cb 419 - fixed incorrect use of catdir when it
10dd437b 420 should be catfile (RT #32385)
421
2491730f 4220.53 Thurs. Feb. 14, 1008
7a536297 423 ~~ several doc. fixes and updates ~~
d7d3f3cb 424
0c6f4c4a 425 * Class::MOP::Class
426 Class::MOP::Method::Constructor
427 Class::MOP::Attribute
428 - making init_arg accept an undefined value
d7d3f3cb 429 to indicate that no constructor args can
0c6f4c4a 430 be passed (thanks to nothingmuch)
431 - added tests for this
339264d8 432 - added attribute initializer attribute (rjbs)
d7d3f3cb 433
0c6f4c4a 434 * Class::MOP.
435 - making this use the new init_arg => undef
d7d3f3cb 436 feature instead of the silly hack from
0c6f4c4a 437 before (thanks to nothingmuch)
ad074154 438
3e8e8f07 4390.52 Tues. Jan. 22, 2008
2a2b8458 440 * Class::MOP::Class
d7d3f3cb 441 - fixed bug in rebless_instance
2a2b8458 442 (discovered by ash)
443
444 * Class::MOP::Method::Constructor
d7d3f3cb 445 - removed assumptions about the existence of
2a2b8458 446 a &meta method
447
656ce3ba 4480.51 Mon. Jan. 14, 2008
69e3ab0a 449 ~~~ some misc. doc. fixes ~~~
450 ~~ updated copyright dates ~~
d7d3f3cb 451
c1d5345a 452 * Class::MOP
d7d3f3cb 453 - now sets the IS_RUNNING_ON_5_10
c1d5345a 454 constant so that we can take advantage
455 of some of the nice bits of 5.10
d7d3f3cb 456
c1d5345a 457 * Class::MOP::Class
d7d3f3cb 458 - uses the IS_RUNNING_ON_5_10 flag to
459 optimize the &linearized_isa method
c1d5345a 460 and avoid the hack/check for circular
d7d3f3cb 461 inheritence in &class_precedence_list
3d9e4646 462 - added rebless_instance method (Sartak)
463 - added tests for this
d7d3f3cb 464
465 * Class::MOP::Immutable
466 - the immutable class now keeps track of
c1d5345a 467 the transformer which immutablized it
69e3ab0a 468
3d9e4646 469 * Class::MOP::Instance
470 - added rebless_instance_structure method (Sartak)
471 - added tests for this
472
a780a6ff 4730.50 Fri. Dec. 21, 2007
6ff0d647 474 * Class::MOP::Class
d7d3f3cb 475 - fixed bug in immutable to make sure that
476 transformation arguments are saved
6ff0d647 477 correctly (mst)
b6bcc3a5 478 - added tests for this
d7d3f3cb 479
6ff0d647 480 * Class::MOP::Immutable
481 - fixed a bug (see above)
d7d3f3cb 482
6ff0d647 483 * Class::MOP::Attribute
484 - some doc updates
485
30b8af04 4860.49 Fri. Dec. 14, 2007
b6bcc3a5 487 !! Class::MOP now loads 2 x faster !!
30b8af04 488 !! with XS speedups (thanks konobi) !!
d7d3f3cb 489
30b8af04 490 * Class::MOP
491 - removed the dependency on B
492 - added two XS functions (thanks konobi)
493 - get_code_info($code) which replaces all
494 the B fiddling we were doing with
495 faster/leaner XS level fiddling
d7d3f3cb 496 - check_package_cache_flag($pkg_name) which
497 returns the PL_sub_generation variable to
30b8af04 498 be used to help manage method caching.
d7d3f3cb 499
500 NOTE:
501 In 5.10 or greater this will actually
502 use the mro::get_pkg_gen instead to give
503 even more accurate caching information.
30b8af04 504 blblack++ for that stuff :)
d7d3f3cb 505
6c9f390e 506 * Class::MOP::Class
507 - added the &subclasses method (thanks rlb)
d7d3f3cb 508 - added the update_package_cache_flag and
509 reset_package_cache_flag which help keep
510 track of when we need to re-fetch the
511 method map.
30b8af04 512 - Several small improvements to take advantage
513 of the new method map caching features
4c4a6c41 514
1b8b3e09 5150.48 Mon. Nov. 26, 2007
d14f6cbe 516 * Class::MOP::Attribute
d7d3f3cb 517 - fixed get_read/write_method to handle the
518 HASH ref case, which makes the
d14f6cbe 519 get_read/write_method_ref handle it too.
520 - added more tests for this
521
742fb371 5220.47 Sat. Nov. 24, 2007
523 * Class::MOP::Attribute
524 - fixed misspelling in get_write_method_ref
78d9bb38 525 - added more tests for this
742fb371 526
fe7c0b15 5270.46 Fri. Nov. 23, 2007
b7bdffc3 528 * Class::MOP::Class
d7d3f3cb 529 - added the linearized_isa method instead of constantly
530 pruning duplicate classes (this will be even more
b7bdffc3 531 useful in the 5.10-compat version coming soon)
d7d3f3cb 532
5da16d1b 533 * Class::MOP::Attribute
534 - added the get_read_method_ref and get_write_method_ref
d7d3f3cb 535 methods which allow you to retrieve a CODE ref which
5da16d1b 536 can always be used to read or write an attribute.
b7bdffc3 537
1a5cc82e 5380.45 Thurs. Nov. 13, 2007
232c4e13 539 * Class::MOP::Attribute
540 - Fix error message on confess (groditi)
541
544143b2 5420.44 Thurs. Nov. 13, 2007
543 - Apparently I didn't make dist correctly (groditi)
544
c0aeeb91 5450.43 Thurs. Nov. 13, 2007
b08fd50c 546 * Class::MOP
1d68af04 547 - Add support for the 'builder' attribute (groditi)
548
b08fd50c 549 * Class::MOP::Class
d7d3f3cb 550 - optimise metaclass-already-exists check in
b08fd50c 551 construct_class_instance (groditi)
d7d3f3cb 552 - duplicate check into initialize to save a
b08fd50c 553 call through (groditi)
554
1d68af04 555 * Class::MOP::Attribute
556 - Add support for the 'builder' attribute (groditi)
d7d3f3cb 557 - Make predicates check for the existence of a value, not whether
b08fd50c 558 it is defined (groditi)
8768ecf3 559
560 * Class::MOP::Instance
d7d3f3cb 561 - Make predicates check for the existence of a value, not whether
b08fd50c 562 it is defined (groditi)
8768ecf3 563
d7d3f3cb 564 * Class::MOP::Method::Accessor
565f0cbb 565 - made this a subclass of Class::MOP::Method::Generated
566 - removed the relevant attributes
567
568 * Class::MOP::Method::Constructor
569 - fixed the cached values we had to be more sane
570 - made this a subclass of Class::MOP::Method::Generated
d7d3f3cb 571 - fixed generated constructor so it properly handles
565f0cbb 572 subclasses now.
573 - added tests for this
d7d3f3cb 574 - added the option to allow for both inlined and
565f0cbb 575 non-inlined constructors.
b08fd50c 576 - Update inlined methods for builder and predicate changes (groditi)
565f0cbb 577
578 * Class::MOP::Method::Generated
d7d3f3cb 579 - added this class as an abstract base for the
565f0cbb 580 Class::MOP::Method::{Constructor,Accessor} classes
581 - added tests for this
582
b08fd50c 583 *t/
584 - Alter tests (005, 014 020, 021) for new builder addition (groditi)
585 - Tests for new predicate behavior (and corrections to old tests) (groditi)
586
587 *examples/
588 - Update ArrayRef based class example to work with predicate changes
589
367183c4 5900.42 Mon. July 16, 2007
9195ddff 591 !!! Horray for mst, he fixed it !!!
592
92af7fdf 593 * Class::MOP::Package
594 - alter symbol table handling to deal with 5.8.x and 5.9.x
d7d3f3cb 595
92af7fdf 596 * t/
9195ddff 597 - Get rid of the crappy workaround from 0.40/41
92af7fdf 598
829f7554 5990.41 Sun. July 15, 2007
600 * t/
601 Arghh!!! My TODO test didn't work, so I handle
d7d3f3cb 602 it manually now so that people can use this
829f7554 603 with 5.9.5/bleadperl without issue.
604
1d7205b8 6050.40 Tues, July 3, 2007
9f88b8ff 606 * t/
d7d3f3cb 607 ~ marked a test in 003_methods.t as TODO
608 for perl 5.9.5 (this test is irrelvant to
609 the module functioning on 5.9.5 for the most
1d7205b8 610 part anyway)
9f88b8ff 611
28acb786 6120.39 Mon. June 18, 2007
b817e248 613 * Class::MOP::Immutable
0ac992ee 614 - added make_metaclass_mutable + docs (groditi)
615 - removed unused variable
d9586da2 616 - added create_immutable_transformer
617 necessary for sane overloading of immutable behavior
d7d3f3cb 618 - tests for this (groditi)
0ac992ee 619
620 * Class::MOP::Class
621 - Immutability can now be undone,
622 added make_mutable + tests + docs (groditi)
04dd7510 623 - Massive changes to the way Immutable is done
624 for details see comments next to make_immutable
625 This fixes a bug where custom metaclasses broke
d7d3f3cb 626 when made immutable. We are now keeping one immutable
627 metaclass instance per metaclass instead of just one
04dd7510 628 to prevent isa hierarchy corruption. Memory use will go
629 up, but I suspect it will be neglible.
630 - New tests added for this behavior. (groditi)
7c90a1a8 631
c0fcd6ab 6320.38 Thurs. May 31, 2007
823a5d31 633 ~~ More documentation updates ~~
d7d3f3cb 634
823a5d31 635 * Class::MOP::Package
636 - we now deal with stub methods properly
637 - added tests for this
c0fcd6ab 638 - fixed some tests failing on 5.9.5 (thanks blblack)
d7d3f3cb 639
b25109b1 640 * Class::MOP::Attribute
641 - added get_read_method and get_write_method
d7d3f3cb 642 thanks to groditi for this code, tests
c81de280 643 and docs.
b25109b1 644 - added tests and POD for this
d7d3f3cb 645
795a0c8b 646 * Class::MOP::Class
d7d3f3cb 647 - fixed RT issue #27329, clone object now
795a0c8b 648 handles undef values correctly.
649 - added tests for this
d7d3f3cb 650 - Corrected anon-class handling so that they
651 will not get reaped when instances still
652 exist which need to reference them. This is
653 the correct behavior, hopefully this is an
654 obscure enough feature that there are not too
d4ba1677 655 many work arounds out in the wild.
d7d3f3cb 656 - added tests for this by groditi
95514cb4 657 - updated docs to explain this
658
659 * metaclass
c0fcd6ab 660 - load custom metaclasses automatically (thanks groditi)
f2266181 661 - added tests for this behavior
a06797b0 662
3dc99d93 6630.37 Sat. March 10, 2007
448b6e55 664 ~~ Many, many documentation updates ~~
d7d3f3cb 665
448b6e55 666 * Class::MOP
d7d3f3cb 667 - added &load_class and &is_class_loaded
448b6e55 668 - added tests and docs for these
2367814a 669
9363ea89 670 * Class::MOP::Attribute
d7d3f3cb 671 - default now checks the instance with defined to
9363ea89 672 avoid setting off bool-overloads (found by Carl Franks)
673
c23184fc 6740.37_002
d7d3f3cb 675 * /t
676 - bad name in a test, causing meaningless failuress.
c23184fc 677 No other changes.
678
6790.37_001
d7d3f3cb 680
c23184fc 681 ~~ GLOBAL CHANGES ~~
d7d3f3cb 682 - All attribute names are now consistent and follow Perl 6
683 style (prefixed with the sigil, and ! as the twigil for
684 private attrs). This should not affect any code, unless
685 you broke encapsulation, in which case, it is your problem
c23184fc 686 anyway.
d7d3f3cb 687
c23184fc 688 !! Class::MOP::Class::Immutable has been removed
d7d3f3cb 689
c23184fc 690 * Class::MOP::Method::Constructor
d7d3f3cb 691 - this has been moved out of Class::MOP::Class::Immutable
c23184fc 692 and is a proper subclass of Class::MOP::Method now.
d7d3f3cb 693
c23184fc 694 * Class::MOP::Class
d7d3f3cb 695 - this module now uses Class::MOP::Immutable for the
696 immutable transformation instead of
c23184fc 697 Class::MOP::Class::Immutable.
d7d3f3cb 698
699 + Class::MOP::Immutable
700 - this module now controls the transformation from a mutable
701 to an immutable version of the class. Docs for this will
c23184fc 702 be coming eventually.
d7d3f3cb 703
c23184fc 704
cdc1ecba 7050.36 Sun. Nov. 5, 2006
a651e249 706 * Class::MOP::Class
d7d3f3cb 707 - added a few 'no warnings' lines to keep annoying
708 (and meaningless) warnings from chirping during
a651e249 709 global destruction.
d7d3f3cb 710
0870928c 711 * Class::MOP
d7d3f3cb 712 - some more bootstrapping is now done on the new
0870928c 713 classes
d7d3f3cb 714
0870928c 715 * Class::MOP::Class::Immutable
d7d3f3cb 716 *** API CHANGE ***
717 - constructor generation is now handled by
0870928c 718 the Class::MOP::Method::Constructor class
d7d3f3cb 719
0870928c 720 * Class::MOP::Method::Constructor
d7d3f3cb 721 - created this to handle constructor generation
0870928c 722 in Class::MOP::Class::Immutable
d7d3f3cb 723
0870928c 724 * Class::MOP::Attribute
d7d3f3cb 725 *** API CHANGE ***
726 - attributes now delegate to the
727 Class::MOP::Method::Accessor to generate
0870928c 728 accessors
d7d3f3cb 729
0870928c 730 * Class::MOP::Method::Accessor
d7d3f3cb 731 - all accessor generation functions from
0870928c 732 Class::MOP::Attribute have been moved here
a651e249 733
80f00c79 7340.35 Sat. Sept. 30, 2006
8745cf22 735
736 * scripts/class_browser.pl
d7d3f3cb 737 - initial prototype of a class browser, more
738 on this to come. Comments and patches are
8745cf22 739 very much welcome.
b1897d4d 740
741 * Class::MOP
d7d3f3cb 742 - All Class::MOP::* accessors are no longer
743 re-generated in the bootstrap, instead
6d2118a4 744 they are aliased from the originals
6d2118a4 745 - fixed tests to reflect
d7d3f3cb 746 - added Class::MOP::Method (and its subclasses)
b1897d4d 747 to the bootstrap
748 - adjusted tests for this
86482605 749 - added the Class::MOP::Instance attributes
750 to the bootstrap
d7d3f3cb 751
b1897d4d 752 * Class::MOP::Method
753 *** API CHANGE ***
754 - methods are no longer blessed CODE refs
755 but are actual objects which can be CODE-ified
756 - adjusted tests to compensate
d7d3f3cb 757 - adjusted docs for this
b1897d4d 758
759 * Class::MOP::Class
d7d3f3cb 760 - changed how methods are dealt with to
761 encapsulate most of the work into the
b1897d4d 762 &get_method_map method
763 - made several adjustments for the change
764 in Class::MOP::Method
d7d3f3cb 765 - &add_attribute now checks if you are adding
766 a duplicate name, and properly removes the
b1897d4d 767 old one before installing the new one
768 - added tests for this
86482605 769 - adjusted docs for this
d7d3f3cb 770
b1897d4d 771 * Class::MOP::Class::Immutable
772 - added caching of &get_method_map
773 - fixed issue with &get_package_symbol
774 - cleaned up the methods that die (patch by David Wheeler)
d7d3f3cb 775
b1897d4d 776 * Class::MOP::Package
d7d3f3cb 777 - added filtering capabilities to
b1897d4d 778 &list_all_package_symbols
779
a549ce50 7800.34 Sat. Aug. 26, 2006
c4260b45 781 * Class::MOP::Class
782 - added the %:methods attribute, which like
d7d3f3cb 783 the $:version and such just actually goes
784 to the symbol table to get it's stuff.
c4260b45 785 However, it makes the MOP more complete.
88dd563c 786 ** API CHANGE **
d7d3f3cb 787 - The &create method now requires that all
788 but the package name now is passed in as
88dd563c 789 named parameters. See docs for more info.
790 - updated docs and tests for this
d7d3f3cb 791
c4260b45 792 * Class::MOP::Object
d7d3f3cb 793 - added &dump method to easily Data::Dumper
c4260b45 794 an object
d7d3f3cb 795
c4260b45 796 * Class::MOP
d7d3f3cb 797 - cleaned up the initialization of attributes
798 which do not store things in the instance
c4260b45 799 - added the %:methods attribute definition to
800 the bootstrap
d7d3f3cb 801
88dd563c 802 ~ lots of misc. test cleanup
c4260b45 803
56e8dd5d 8040.33 Sat. Aug. 19, 2006
be7677c7 805 * Class::MOP::Class
d7d3f3cb 806 - moved the metaclass cache out of here
be7677c7 807 and it is now in Class::MOP itself.
d7d3f3cb 808
56e8dd5d 809 * Class::MOP
810 - moved all the metaclass cache stuff here
811 - fixed all tests for this
be7677c7 812
148b4697 813 * Class::MOP::Attribute
d7d3f3cb 814 - reference values (other than CODE refs)
148b4697 815 are no longer allowed for defaults
816 - added tests for this
d7d3f3cb 817
56dcfc1a 818 * Class::MOP::Package
d7d3f3cb 819 - fixed an issue with perl 5.8.1 and how it deals
820 with symbol tables. The namespace hash is now
821 always reloaded from the symbol table.
e3a2c885 822
823 ~ lots of misc. documentation cleanup
1396f86b 824
716c5765 8250.32 Sat. Aug. 12, 2006
d7d3f3cb 826 + added Class::MOP::Object so that the
6e57504d 827 metamodel is more complete (and closer
828 to what Perl 6 will probably be).
829
9ca19585 830 * Class::MOP::Package
d7d3f3cb 831 - refactored entire class, this is now
9ca19585 832 the primary gateway between the metaclass
833 and the Perl 5 symbol table
834 - added many tests for this
d7d3f3cb 835 - this class is now a subclass of
6e57504d 836 Class::MOP::Object
716c5765 837 - added some tests to reflect this
d7d3f3cb 838
9ca19585 839 * Class::MOP::Class
d7d3f3cb 840 - refactored all symbol table access to
9ca19585 841 use Class::MOP::Package methods instead
d7d3f3cb 842
f0480c45 843 * Class::MOP::Module
844 - adding the $:version attribute in the bootstrap
845 so that Module has a version as an attribute
846 - see comment in Class::MOP for details
d7d3f3cb 847 - added the $:authority attribute to this module
848 as well as an &identifier method, to bring us
849 ever closer to Perl 6 goodness
850 - I have added $AUTHORITY to all the modules
716c5765 851 - added tests for this
d7d3f3cb 852
f0480c45 853 * Class::MOP::Instance
d7d3f3cb 854 - added &deinitialize_slot for removing slots
f0480c45 855 from an instance
d7d3f3cb 856 - added tests for this
857
858 * Class::MOP::Attribute
9ca19585 859 - added support for &deinitialize_slot for removing
860 slots from an instance
861 - added tests for this
862
1a09d9cc 8630.31 Sat. July 15, 2006
864
b679e644 865 * Class::MOP::Class
866 - added &find_method_by_name to locate a method
d7d3f3cb 867 anywhere within the class hierarchy
868
b679e644 869 * Class::MOP::Attribute
d7d3f3cb 870 - added &set_value and &get_value for getting
871 the value of the attribute for a particular
b679e644 872 instance.
873
373a16ae 8740.30 Wed. July 5, 2006
875 ---------------------------------------
d7d3f3cb 876 This is the first version of Class::MOP
373a16ae 877 to introduce the immutable features which
d7d3f3cb 878 will be used for optimizating the MOP.
373a16ae 879 This support should still be considered
880 experimental, but moving towards stability.
881 ---------------------------------------
d7d3f3cb 882
883 * Created Class::MOP::Class::Immutable
884
885 * Created the Class::MOP::Package and
886 Class::MOP::Module classes to more
373a16ae 887 closely conform to Perl 6's meta-model
e0a82090 888
889 * Class::MOP::Class
890 - now inherits from Class::MOP::Module
d7d3f3cb 891 - several methods moved to ::Module and
e0a82090 892 ::Package and now inherited
893 - added tests for this
d7d3f3cb 894
c0cbf4d9 895 * Class::MOP::Instance
d7d3f3cb 896 - added an is_inlinable method to allow other
c0cbf4d9 897 classes to check before they attempt to optimize.
d7d3f3cb 898 - added an inline_create_instance to inline
899 instance creation (of course)
900
2ba153a9 901 ** API CHANGE **
d7d3f3cb 902 - the Class::MOP::Class::*_package_variable
2ba153a9 903 methods are all now methods of Class::MOP::Package
d7d3f3cb 904 and called *_package_symbol instead. This is
905 because they are now more general purpose symbol
906 table manipulation methods.
e0a82090 907
cdfaa4cc 9080.29_02 Thurs. June 22, 2006
909 ++ DEVELOPER RELEASE ++
df7b4119 910 * Class::MOP::Class
d7d3f3cb 911 - small change in &create so that it behaves
df7b4119 912 properly when inherited
cdfaa4cc 913 - small fix to &clone_instance
df7b4119 914
667cecf3 9150.29_01 Fri. May 12, 2006
916 ++ DEVELOPER RELEASE ++
d7d3f3cb 917 - This release works in combination with
667cecf3 918 Moose 0.09_01, it is a developer release
d7d3f3cb 919 because it introduces a new instance
920 sub-protocol and has not yet been
921 optimized.
667cecf3 922
40483095 923 * Class::MOP::Class
924 - anon-classes are now properly garbage collected
d7d3f3cb 925 - added tests for this
926 - improved method modifier wrapping
40483095 927
2bab2be6 928 * Class::MOP::Instance
1becdfcc 929 - added new instance protocol
2bab2be6 930 - added tests for this
931 - changed all relevant modules and examples
932 - Class::MOP::Class
933 - Class::MOP::Attribute
934 - examples/*
935
1becdfcc 936 * metaclass
937 - you no longer need to specify the metaclass
938 itself, if it is not there, Class::MOP::Class
939 is just assumed
940 - updated tests for this
941
942 * examples/
d7d3f3cb 943 - added ArrayBasedStorage example to show
1becdfcc 944 instance storage using ARRAY refs instead of
d7d3f3cb 945 HASH refs.
1becdfcc 946 - added tests for this
d7d3f3cb 947 - InsideOutClass is totally revised using the
1becdfcc 948 new instance protocol
949 - added more tests for this
950
93b4e576 9510.26 Mon. April 24, 2006
e7f732e4 952 * Class::MOP::Class
953 - added find_attribute_by_name method
954 - added tests and docs for this
56a0b530 955 - some small optimizations
956
957 * Class::MOP::Attribute
958 - some small optimizations
e7f732e4 959
46666f33 9600.25 Thurs. April 20, 2006
587aca23 961 * Class::MOP::Class
962 - added create_anon_class for creating anonymous classes
963 - added tests for this
964 - added get_all_metaclasses, get_all_metaclass_names
965 and get_all_metaclass_instances method to allow
966 access to all the cached metaclass objects.
bd4e03f9 967 - attribute slot initialization is now the responsibility
d7d3f3cb 968 of the attribute itself, and construct_instance now
bd4e03f9 969 delegates appropriately
d7d3f3cb 970
bd4e03f9 971 * Class::MOP::Attribute
972 - attribute slot initialization is now the responsibility
973 of the attribute itself, so we added a method for it
974 called initialize_instance_slot
d7d3f3cb 975
fed4cee7 976 * examples/
d7d3f3cb 977 - adjusted all the examples to use the new attribute
978 initialize_instance_slot method
587aca23 979
1daaa2b2 9800.24 Tues. April 11, 2006
8c936afc 981 * Class::MOP::Class
d7d3f3cb 982 - cleaned up how the before/after/around method
8c936afc 983 modifiers get named with Sub::Name
984
b9dfbf78 9850.23 Thurs. March 30, 2006
a977cf65 986 * Class::MOP::Class
d7d3f3cb 987 - fixed the way attribute defaults are handled
a977cf65 988 during instance construction (bug found by chansen)
d7d3f3cb 989
b9dfbf78 990 * Class::MOP::Attribute
d7d3f3cb 991 - read-only accessors ('reader') will now die if
b9dfbf78 992 passed more than one argument (attempting to write
993 to them basically)
994 - added tests for this
d7d3f3cb 995 - adjusted all /example files to comply
a977cf65 996
f9eba090 9970.22 Mon. March 20, 2006
0eff2c16 998 * Class::MOP::Class
999 - localized $@ in the *_package_variable functions
1000 because otherwise, it does ugly things in Moose.
1001 - added test case for this
1002
1988e85e 10030.21 Wed. March 15, 2006
2f6d5412 1004 * Class::MOP::Class
d7d3f3cb 1005 - fixed issue where metaclasses are reaped from
2f6d5412 1006 our cache in global destruction, and so are not
1007 available in DESTORY calls
1008
96ceced8 10090.20 Thurs. March 2, 2006
d7d3f3cb 1010 - removed the dependency for Clone since
d3cb0d4a 1011 we no longer to deep-cloning by default.
d7d3f3cb 1012
a4258ffd 1013 * Class::MOP::Method
d7d3f3cb 1014 - added &package_name, &name and
1015 &fully_qualified_name methods, some of
1016 which were formerly private subs in
a4258ffd 1017 Class::MOP::Class
d7d3f3cb 1018
a4258ffd 1019 * Class::MOP::Method::Wrapped
d7d3f3cb 1020 - allows for a method to be wrapped with
1021 before, after and around modifiers
a4258ffd 1022 - added tests and docs for this feature
d3cb0d4a 1023
1024 * Class::MOP::Class
58d75218 1025 - improved &get_package_symbol
96ceced8 1026 - &version and &superclasses now use it
a4258ffd 1027 - methods are now blessed into Class::MOP::Method
1028 whenever possible
d7d3f3cb 1029 - added methods to install CLOS-style method modifiers
a4258ffd 1030 - &add_before_method_modifier
d7d3f3cb 1031 - &add_after_method_modifier
a4258ffd 1032 - &add_around_method_modifier
1033 - added tests and docs for these
d7d3f3cb 1034 - added &find_next_method_by_name which finds the
96ceced8 1035 equivalent of SUPER::method_name
d3cb0d4a 1036
1c020571 10370.12 Thurs. Feb 23, 2006
d7d3f3cb 1038 - reduced the dependency on B, no need to always
d89c0fad 1039 have the latest
1040
1c020571 1041 * examples/
1042 - added docs to the C3 method dispatch order test
d7d3f3cb 1043 - fixed missing Algorithm::C3 dependency by making
1c020571 1044 the test skip if it is not installed
1045
0dea7280 10460.11 Mon Feb. 20, 2006
f3f5bd34 1047 * examples/
1048 - added example of changing method dispatch order to C3
d7d3f3cb 1049
a27ae83f 1050 * Class::MOP::Class
19d4b5b8 1051 - changed how clone_instance behaves, it now only does a
1052 shallow clone (see docs for more details)
a27ae83f 1053 - added docs and tests
f3f5bd34 1054
3bf7644b 10550.10 Tues Feb. 14, 2006
d7d3f3cb 1056 ** This release was mostly about writing more tests and
1057 cleaning out old and dusty code, the MOP should now
3bf7644b 1058 be considered "ready to use".
1059
22286063 1060 - adding more tests to get coverage up a little higher,
1061 mostly testing errors and edge cases.
1062 - test coverage is now at 99%
d7d3f3cb 1063
aa448b16 1064 * Class::MOP
1065 - no longer optionally exports to UNIVERSAL::meta or
d7d3f3cb 1066 creates a custom metaclass generator, use the
aa448b16 1067 metaclass pragma instead.
22286063 1068
d7d3f3cb 1069 * Class::MOP::Class
1070 - fixed a number of minor issues which came up in the
1071 error/edge-case tests
1072
1073 * Class::MOP::Attribute
1074 - fixed a number of minor issues which came up in the
22286063 1075 error/edge-case tests
d7d3f3cb 1076
0b8eb325 1077 * examples/
ea263060 1078 - fixing the AttributesWithHistory example, it was broken.
663f8198 1079
550d56db 10800.06 Thurs Feb. 9, 2006
677eb158 1081 * metaclass
d7d3f3cb 1082 - adding new metaclass pragma to make setting up the
677eb158 1083 metaclass a little more straightforward
d7d3f3cb 1084
7b31baf4 1085 * Class::MOP
d7d3f3cb 1086 - clean up bootstrapping to include more complete
1087 attribute definitions for Class::MOP::Class and
1088 Class::MOP::Attribute (accessors, readers, writers,
7b31baf4 1089 etc.) ... it is redundant, but is useful meta-info
1090 to have around.
677eb158 1091
99e5b7e8 1092 * Class::MOP::Class
d7d3f3cb 1093 - fixing minor meta-circularity issue with &meta, it
99e5b7e8 1094 is now more useful for subclasses
d7d3f3cb 1095 - added &get_attribute_map as an accessor for the
7b31baf4 1096 hash of attribute meta objects
c9e77dbb 1097 - &compute_all_applicable_attributes now just returns
1098 the attribute meta-object, rather than the HASH ref
d7d3f3cb 1099 since all the same info can be gotten from the
c9e77dbb 1100 attribute meta-object itself
1101 - updated docs & tests to reflect
5f3c057a 1102 - added &clone_instance method which does a deep clone
1103 of the instance structure created by &construct_instance
1104 - added docs & tests for this
550d56db 1105 - added Clone as a dependency
5f3c057a 1106 - added &new_object and &clone_object convience methods to
1107 return blessed new or cloned instances
2a7575a6 1108 - they handle Class::MOP::Class singletons correctly too
5f3c057a 1109 - added docs & tests for this
2a7575a6 1110 - cleaned up the &constuct_class_instance so that it behaves
1111 more like &construct_instance (and managed the singletons too)
550d56db 1112 - added the &check_metaclass_compatibility method to make sure
1113 that metaclasses are upward and downward compatible.
1114 - added tests and docs for this
d7d3f3cb 1115
99e5b7e8 1116 * examples/
1117 - adjusting code to use the &Class::MOP::Class::meta
1118 fix detailed above
677eb158 1119 - adjusting code to use the metaclass pragma
d7d3f3cb 1120
aa9c883e 11210.05 Sat Feb. 4, 2006
2e41896e 1122 * Class::MOP::Class
1123 - added the &attribute_metaclass and &method_metaclass
d7d3f3cb 1124 attributes which contain a metaclass name to use for
2e41896e 1125 attributes/methods respectively
d7d3f3cb 1126
351bd7d4 1127 * Class::MOP
d7d3f3cb 1128 - bootstrap additional attributes for Class::MOP::Class
1129
2e41896e 1130 * examples/
1131 - adjusted the example code and tests to use the new
1132 &attribute_metaclass feature of Class::MOP::Class
aa9c883e 1133 - added new example:
1134 - LazyClass
2e41896e 1135
d7c2cbe3 11360.04 Fri Feb. 3, 2006
d6fbcd05 1137 * Class::MOP::Class
1138 - some documentation suggestions from #perl6
d7d3f3cb 1139
d6fbcd05 1140 * Class::MOP::Attribute
d7d3f3cb 1141 - improved error messages
1142
d6fbcd05 1143 * examples/
1144 - added new examples:
1145 - AttributesWithHistory
d7c2cbe3 1146 - ClassEncapsultedAttributes
343203ee 1147
9ec169fe 11480.03 Fri Feb. 3, 2006
1149 - converted to Module::Build instead of EU::MM
d7d3f3cb 1150
9ec169fe 1151 * Class::MOP::Attribute
1152 - refactored method generation code
1153 - attributes are now associated with class directly
d7d3f3cb 1154
f71f4295 1155 * examples/
d7d3f3cb 1156 - refactored the InsideOut example to take advantage
9ec169fe 1157 of the Class::MOP::Attribute refactoring
f71f4295 1158 - changed example files to .pod files and hide thier
1159 package names from PAUSE (I don't want to own these
1160 namespaces really, they are just examples)
9ec169fe 1161
a57c7fa2 11620.02 Thurs Feb. 2, 2006
1163 - moving examples from t/lib/* to examples/*
1164 - adding POD documentation to the examples
1165
a2e85e6c 11660.01 Thurs Feb. 2, 2006
92af7fdf 1167 - Initial release