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