Class::C3 - 0.07 release;
[gitmo/Class-C3.git] / ChangeLog
CommitLineData
95bebf8c 1Revision history for Perl extension Class::C3.
2
f7facd7b 30.07 - Wed, Nov 23, 2005
4 * all bugs found by, and fixes provided by Matt S. Trout *
5 - fixed issue caused when module is imported more than once
6 - fixed subtle bug in how next::method is calculated
7 - added test for this
8
9 - added util/visualize_c3.pl tool, which visualizes C3
10 dispatch order using GraphViz
11
120.06 - Tues, Nov 15, 2005
4e47d2a4 13 - added Sub::Name to dependencies (even though it is
14 just for the tests)
15 - removed OS X resource fork which slipped into the tar.gz
16 - improved error reporting for Inconsistent Hierarchies
680100b1 17 - added feature to insure that Overload "fallback" setting
18 is properly inherited
19 - added test for this
4e47d2a4 20
5d5c86d9 210.05 - Mon, Nov 14, 2005
22 - added caching to next::method, courtesy of quicksilver
23 and mst over at #dbi-class
24 - added next::method edge case test
25 - added next::method & NEXT test
26
270.04 - Thurs, Sept 29, 2004
28 - changed NEXT::METHOD::foo to next::method
29 - added more tests as well
30
310.03 - Wed, Sept 28, 2005
32 - added the NEXT::METHOD psuedo package for method
33 redispatching along the C3 linearization
34 - added test for this
35
d0e2efe5 360.02 - Mon, Aug 8, 2005
37 - code refactoring
38 - many comments added
60de85f7 39 - added many more tests
d0e2efe5 40 - most of the tests from Perl6::MetaModel moved over
41 - tested loading modules with `use` as well as the
42 inline package definition
60de85f7 43 - added optional 'c3' pragma
d0e2efe5 44 - this is not installed and can be found in opt/
45 - added `uninitialize` function to remove C3 dispatch ordering
46 - added tests for this
47 - added `reinitialize` function to reload C3 dispatch ordering
48 - added tests for this
d401eda1 49
6a8a3678 500.01 - Sun, Aug 7, 2005
51 - initial release of module
d0e2efe5 52 - some code and tests based on previous Perl6::MetaModel work