Update for latest B::Hooks::OP::Check API.
[p5sagit/Devel-Declare.git] / Changes
1 Changes for Devel-Declare
2
3   - eliminate PERL_5_9_PLUS macro in favour of ifdef PL_parser
4   - clean up checks for whether we're lexing and whether lex_stuff exists
5     to handle the PL_parser factor-out in 5.10
6
7 0.002000
8   - rewrite guts into perl, add tests for new declaration style
9
10 0.001011
11   - add support for 'method main' and other package names
12
13 0.001010
14   - fix traits code, again, so it compiles on 5.10.
15
16 0.001009
17   - only mangle evals if o->op_ppaddr is actually PL_ppaddr[OP_ENTERVAL]
18   - don't set OPf_SPECIAL on entereval ops, mistaken cargo cult from autobox
19   - fix traits code to work on older 5.8.x perls
20
21 0.001008
22   - turns out 0.1.7 in Makefile.PL results in that version going into
23     the .xs file as well as the dist name. Then everything breaks.
24
25 0.001007
26   - bail on SvGROW during declare process since that can't work
27   - use a source filter on files and an op wrap on evals to pre-grow
28     PL_linestr so we don't get to the point of needing to bail
29
30 0.001006
31   - nasty goto &$func hack to avoid :lvalue+list context weirdness
32   - correct SvGROW invocation
33
34 0.001005
35   - stop using & prototypes at all
36
37 0.001004
38   - correct idiotic typo if ifndef
39
40 0.001003
41   - internalise definitions for toke.c chunks to save hassle
42   - make NEWSV macro defined via ifndef rather than version check in case
43     of 5.8.8-maint (and 5.8.9)
44
45 0.001002
46   - compilation fixes for 5.9.5 and -DDEBUGGING
47
48 0.001001
49   - compilation fixes for 5.8.1+
50   - set Makefile.PL to bomb out for <5.8.1
51
52 0.001000
53   - Initial release to CPAN