whoops
[gitmo/Class-C3.git] / ChangeLog
CommitLineData
95bebf8c 1Revision history for Perl extension Class::C3.
2
ac6b0914 30.08 - Wed, Dec 28, 2005
4 - adjusted &_remove_method_dispatch_table to be more
5 discriminating about what it deletes. Thanks to
6 Matt S. Trout for this fix.
7 - tweaked &_merge to avoid un-needed looping. Thanks to
8 Audrey Tang for this fix.
9 - added better support for calling next::method within
10 an eval BLOCK. Thanks to Justin Guenther for this patch
11 and test.
12
f7facd7b 130.07 - Wed, Nov 23, 2005
14 * all bugs found by, and fixes provided by Matt S. Trout *
15 - fixed issue caused when module is imported more than once
16 - fixed subtle bug in how next::method is calculated
17 - added test for this
18
19 - added util/visualize_c3.pl tool, which visualizes C3
20 dispatch order using GraphViz
21
220.06 - Tues, Nov 15, 2005
4e47d2a4 23 - added Sub::Name to dependencies (even though it is
24 just for the tests)
25 - removed OS X resource fork which slipped into the tar.gz
26 - improved error reporting for Inconsistent Hierarchies
680100b1 27 - added feature to insure that Overload "fallback" setting
28 is properly inherited
29 - added test for this
4e47d2a4 30
5d5c86d9 310.05 - Mon, Nov 14, 2005
32 - added caching to next::method, courtesy of quicksilver
33 and mst over at #dbi-class
34 - added next::method edge case test
35 - added next::method & NEXT test
36
370.04 - Thurs, Sept 29, 2004
38 - changed NEXT::METHOD::foo to next::method
39 - added more tests as well
40
410.03 - Wed, Sept 28, 2005
42 - added the NEXT::METHOD psuedo package for method
43 redispatching along the C3 linearization
44 - added test for this
45
d0e2efe5 460.02 - Mon, Aug 8, 2005
47 - code refactoring
48 - many comments added
60de85f7 49 - added many more tests
d0e2efe5 50 - most of the tests from Perl6::MetaModel moved over
51 - tested loading modules with `use` as well as the
52 inline package definition
60de85f7 53 - added optional 'c3' pragma
d0e2efe5 54 - this is not installed and can be found in opt/
55 - added `uninitialize` function to remove C3 dispatch ordering
56 - added tests for this
57 - added `reinitialize` function to reload C3 dispatch ordering
58 - added tests for this
d401eda1 59
6a8a3678 600.01 - Sun, Aug 7, 2005
61 - initial release of module
d0e2efe5 62 - some code and tests based on previous Perl6::MetaModel work