Merge 'trunk' into 'Class-C3-PurePerl'
[gitmo/Class-C3.git] / ChangeLog
1 Revision history for Perl extension Class::C3.
2
3     - Fix for overloading to method name string,
4        from Ittetsu Miyazaki.
5
6 0.15_01 Fri, Apr 13, 2007
7     - Supports bleadperl + c3 patches (experimental)
8
9 0.14 Tues, Sep 19, 2006
10     - Fix for rt.cpan.org #21558
11     - converted to Module::Build
12
13 0.13 Fri, Aug 25, 2006
14     - Make use of Algorithm::C3 0.05's merge caching
15
16 0.12 Tues, July 18, 2006
17     - clarifying docs for &initialize (thanks jcs)
18     - applying patch from Robert Norris to add 
19       next::can() and maybe::next::method() 
20       functionality which allows safe probing of 
21       the presence of the next method
22
23 0.11 Thurs, Feb 23, 2006
24     - added some more tests for edge cases
25     - removed INIT, you must explicitly call &initialize now
26         - added docs explaining this
27         - altered tests as needed
28     - moved the C3 algorithm to Algorithm::C3 and added 
29       that as a dependency to this module
30     - added docs to explain the "next::method in anon-sub" issue
31         - suggestions/solutions/patches welcome :)
32     - bumped the Scalar::Util version requirement back down
33       to 1.10, apparently the newer version has some issues          
34
35 0.10 - Wed, Feb 8, 2006
36     - removed the Sub::Name and NEXT dependencies and 
37       made the test just skip if they are not present
38     - bumped the Scalar::Util version requirement up 
39       (the newest version tends to work the best across
40       different platforms)
41
42 0.09 - Fri, Dec 30, 2005
43     - this is actually the proper version of 0.08, I forgot
44       to check in some modifications, and so they didn't get
45       included in my upload. 
46
47 0.08 - Wed, Dec 28, 2005
48     - adjusted &_remove_method_dispatch_table to be more 
49       discriminating about what it deletes. Thanks to 
50       Matt S. Trout for this fix.
51     - tweaked &_merge to avoid un-needed looping. Thanks to 
52       Audrey Tang for this fix.
53     - added better support for calling next::method within 
54       an eval BLOCKs and anon-subroutines. Thanks to Justin 
55       Guenther for this patch and test.
56
57 0.07 - Wed, Nov 23, 2005
58     * all bugs found by, and fixes provided by Matt S. Trout *
59     - fixed issue caused when module is imported more than once
60     - fixed subtle bug in how next::method is calculated
61         - added test for this
62         
63     - added util/visualize_c3.pl tool, which visualizes C3 
64       dispatch order using GraphViz
65
66 0.06 - Tues, Nov 15, 2005
67     - added Sub::Name to dependencies (even though it is
68       just for the tests)
69     - removed OS X resource fork which slipped into the tar.gz
70     - improved error reporting for Inconsistent Hierarchies
71     - added feature to insure that Overload "fallback" setting
72       is properly inherited
73         - added test for this
74
75 0.05 - Mon, Nov 14, 2005
76     - added caching to next::method, courtesy of quicksilver
77       and mst over at #dbi-class
78         - added next::method edge case test 
79         - added next::method & NEXT test
80
81 0.04 - Thurs, Sept 29, 2004
82     - changed NEXT::METHOD::foo to next::method
83         - added more tests as well
84
85 0.03 - Wed, Sept 28, 2005
86     - added the NEXT::METHOD psuedo package for method
87       redispatching along the C3 linearization
88         - added test for this
89
90 0.02 - Mon, Aug 8, 2005
91     - code refactoring
92         - many comments added
93     - added many more tests 
94         - most of the tests from Perl6::MetaModel moved over
95         - tested loading modules with `use` as well as the 
96           inline package definition
97     - added optional 'c3' pragma
98         - this is not installed and can be found in opt/
99     - added `uninitialize` function to remove C3 dispatch ordering 
100         - added tests for this
101     - added `reinitialize` function to reload C3 dispatch ordering     
102         - added tests for this
103
104 0.01 - Sun, Aug 7, 2005
105     - initial release of module
106     - some code and tests based on previous Perl6::MetaModel work