Merge 'trunk' into 'Class-C3-PurePerl'
[gitmo/Class-C3.git] / ChangeLog
CommitLineData
95bebf8c 1Revision history for Perl extension Class::C3.
2
030b48e2 3 - Fix for overloading to method name string,
4 from Ittetsu Miyazaki.
5
663e8dcc 60.15_01 Fri, Apr 13, 2007
e86d671c 7 - Supports bleadperl + c3 patches (experimental)
8
7cab475b 90.14 Tues, Sep 19, 2006
ff168601 10 - Fix for rt.cpan.org #21558
7cab475b 11 - converted to Module::Build
ff168601 12
7cab475b 130.13 Fri, Aug 25, 2006
f4a893b2 14 - Make use of Algorithm::C3 0.05's merge caching
15
7cab475b 160.12 Tues, July 18, 2006
5f01eb5f 17 - clarifying docs for &initialize (thanks jcs)
322a5920 18 - applying patch from Robert Norris to add
476aa1b4 19 next::can() and maybe::next::method()
20 functionality which allows safe probing of
21 the presence of the next method
5f01eb5f 22
7cab475b 230.11 Thurs, Feb 23, 2006
2ffffc6d 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
58f0eafe 30 - added docs to explain the "next::method in anon-sub" issue
31 - suggestions/solutions/patches welcome :)
d3049849 32 - bumped the Scalar::Util version requirement back down
33 to 1.10, apparently the newer version has some issues
2ffffc6d 34
08c29211 350.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
bad9dc59 420.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
ac6b0914 470.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
7bb662d7 54 an eval BLOCKs and anon-subroutines. Thanks to Justin
55 Guenther for this patch and test.
ac6b0914 56
f7facd7b 570.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
660.06 - Tues, Nov 15, 2005
4e47d2a4 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
680100b1 71 - added feature to insure that Overload "fallback" setting
72 is properly inherited
73 - added test for this
4e47d2a4 74
5d5c86d9 750.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
810.04 - Thurs, Sept 29, 2004
82 - changed NEXT::METHOD::foo to next::method
83 - added more tests as well
84
850.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
d0e2efe5 900.02 - Mon, Aug 8, 2005
91 - code refactoring
92 - many comments added
60de85f7 93 - added many more tests
d0e2efe5 94 - most of the tests from Perl6::MetaModel moved over
95 - tested loading modules with `use` as well as the
96 inline package definition
60de85f7 97 - added optional 'c3' pragma
d0e2efe5 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
d401eda1 103
6a8a3678 1040.01 - Sun, Aug 7, 2005
105 - initial release of module
f4a893b2 106 - some code and tests based on previous Perl6::MetaModel work