I am an idiot
[gitmo/Class-C3.git] / ChangeLog
1 Revision history for Perl extension Class::C3.
2
3 0.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 BLOCKs and anon-subroutines. Thanks to Justin 
11       Guenther for this patch and test.
12
13 0.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
22 0.06 - Tues, Nov 15, 2005
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
27     - added feature to insure that Overload "fallback" setting
28       is properly inherited
29         - added test for this
30
31 0.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
37 0.04 - Thurs, Sept 29, 2004
38     - changed NEXT::METHOD::foo to next::method
39         - added more tests as well
40
41 0.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
46 0.02 - Mon, Aug 8, 2005
47     - code refactoring
48         - many comments added
49     - added many more tests 
50         - most of the tests from Perl6::MetaModel moved over
51         - tested loading modules with `use` as well as the 
52           inline package definition
53     - added optional 'c3' pragma
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
59
60 0.01 - Sun, Aug 7, 2005
61     - initial release of module
62     - some code and tests based on previous Perl6::MetaModel work