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