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