Version 0.002001.
[p5sagit/Devel-Declare.git] / Changes
diff --git a/Changes b/Changes
index 6df7ec1..6e1e539 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,29 @@
 Changes for Devel-Declare
 
+0.002001
+  - clean up checks for whether we're lexing and whether lex_stuff exists
+    to handle the PL_parser factor-out in 5.10
+  - check if reallocation of PL_linestr is necessary before doing it. this way
+    we can bail out properly instead of corrupting memory in some cases
+  - don't call strlen twice on the same sting
+  - try to be more portable
+    - stop using Nullsv
+    - don't use Perl_* functions directly.
+    - don't define PERL_CORE
+    - use NEWSV from handy.h instead of defining our own
+    - don't define PERL_NO_GET_CONTEXT
+    - don't support preprocessors (perl -P)
+
+0.002000
+  - rewrite guts into perl, add tests for new declaration style
+
+0.001011
+  - add support for 'method main' and other package names
+
+0.001010
+  - fix traits code, again, so it compiles on 5.10.
+
+0.001009
   - only mangle evals if o->op_ppaddr is actually PL_ppaddr[OP_ENTERVAL]
   - don't set OPf_SPECIAL on entereval ops, mistaken cargo cult from autobox
   - fix traits code to work on older 5.8.x perls