b8dfee8846e5199406130fd64136e722b3d4f9f5
[bpt/coccinelle.git] / changes.txt
1 -*- org -*-
2
3 * upcoming/planned/todo
4 ** Language:
5 - Semantic patch for other languages
6 - Support metavariables, virtual rules and virtual identifiers
7 in initialize and finalize rules
8 - Support for matching #ifdef, etc.
9
10 ** Features:
11 - New scripting languages
12
13 ** Bugfix:
14 - Add more information in documentation, man pages and wiki
15
16
17 * 0.2.5
18 ** Language:
19 - Make a very small attempt to parse C++ code, amounting to accepting
20 identifiers containing ::, tilde, and template invocations. Use the
21 option -c++. This is not likely to be very useful in practice.
22 - Added metavariable metavariable type.
23 - Add disjunctions on identifiers in some contexts
24 - Pretend that & indicates a pointer in -c++ mode
25
26 ** Features:
27 - support transformations on variables (only) in declarations that declare
28 multiple variables
29 - allow #endif XXX in C code
30 - relax_include_path now applied to non local includes too, in which case
31 it tries to find a unique file with a suffix of the provided name.
32 this is useful for directories that are intended to be symbolic links.
33 - support matching and removing #undef
34 - support for iteration in ocaml, requires use of -no_show_diff
35 - calls to likely and unlikely propagate test expression status to their
36 arguments
37 - reuse typedefs and macros from complete parsing when reparsing the
38 transformed code
39 - optimization for an if branch that is just { ... }
40
41 ** Bugfix:
42 - improved parsing of expressions to allow ... to the right of operators in
43 more places
44 - Fix check_config for Python 2.7 on Fedora 14 (Reported-by: Michael Stefaniuc)
45 - Check for ocamlfind in configure (Reported-by: Paul E. McKenney)
46 - Postpone use of ocamlfind at runtime to report fewer errors
47 - Add support for Python 2.4 binding with the provided pycaml library
48
49 * 0.2.4
50 ** Language:
51 - scripts now have names and can declare metavariables that are seen by
52 SmPL as identifier metavariables, see demos/{python,ocaml}tococci.cocci
53 - declaration (match variable declarations) and field (match structure
54 field declarations) metavariables
55 - matching of array initializations and of enum declarations
56
57 ** Features:
58 - compatability with Python 2.7. Thanks to Richard W.M. Jones for pointing
59 out the problem
60 - python and ocaml string representations of parameter lists and expression
61 lists
62 - try simpler patterns on glimpse failure
63 - graceful and immediate failure when a virtual rule is defined on the
64 command line, but not in the rule
65 - spatch returns -1 when a virtual rule is requested that is not supported
66 - no transformation when using * with the option -no_show_diff
67 - expanded +++ file name for match output
68 - struct *^* and enum *^* metavariable types
69 - allow an assignment to match a variable initialization, even if multiple
70 variables are declared at the same time.
71 - add the option -recursive_includes
72 - added the option -use_idutils. The requires the previous use of the
73 script idutils_index.sh
74
75 ** Bugfix:
76 - detect used after metavariables in simple statement metavariable match
77 - allow inheriting position variables over rules that make transformations
78 but depend on virtual rules that are not defined on the command line
79 - treat top-level tokens in decl visitor. Thanks to Peter Tummeltshammer
80 for noticing a resulting problem.
81 - improve typing of the result of an assignment expression
82 - eliminate some recursive calls in C code parsing to avoid stack overflows
83 - better pretty printing of #define when the whole line is removed
84 - better pretty printing of asm code containing
85 "::[input]"r"(&coherence_data[i])"
86 - allow pretty printing of C code with nameless bit fields
87 - avoid adding an error message to standard output if ocamlfind is not
88 found
89 - struct/union/enum-typed metavariables with a metavariable type name
90 - better management of whitespace between deleted lines. Thanks to
91 Andriy Gapon for noticing the problem.
92 - improved parsing recovery for badly parsed struct/enum typedefs
93 - drop expanded tokens in sgrep output. Thanks to Andriy Gapon for
94 noticing the problem.
95 - constant strings have array type, not pointer type. Thanks to Vasiliy
96 Kulikov for noticing the problem.
97 - improve indentation when adding code after a function call with indented
98 arguments.
99 - return type of sizeof converted to unsigned long. Thanks to Vasiliy
100 Kulikov for noticing the problem.
101 - improve spacing when adding structure initializers. Thanks to Vasiliy
102 Kulikov for noticing the problem.
103
104 * 0.2.3
105 ** Language:
106 - <= constraints relating an expression metavariable to one or more
107 inherited expression metavariables that it should be a subexpression of
108 - the -inplace and -outplace options have been renamed -in_place and
109 -out_place. -in_place no longer makes a backup. A backup can be
110 requested using the option -backup_suffix, eg -backup_suffix .bk
111 - identifiers can be constrained to be different from an inherited
112 identifier metavariable, or from a set containing both concrete
113 identifiers and inherited identifier metavariables.
114 - support for ocaml scripting
115 - ast available in ocaml scripts
116
117 ** Features:
118 - drop inconsistent paths check when only one node was matched
119 - allow #define id with no definition
120 - attempt to add newlines in the generated code when function calls in the
121 smpl cause passing column 80
122 - allow - in front of statement level nests, if everything inside the nest
123 is also -
124 - 'configure' looks for some system libraries: menhirLib, sexplib, pycaml.
125 Not available libraries are replaced by a copy provided with the sources.
126 - added static for a function goes just before what is specified in the
127 semantic patch, not before any comments etc.
128 - Add a new option, -ignore_unknown_options, to ease the integration
129 of Coccinelle as a checker in a toolchain.
130 - error in python code causes immediate abort of spatch
131 - use the same algorithm for collecting grep tokens as for collecting
132 glimpse tokens
133 - Add scripts/spatch.bash_completion for automatic completion of common
134 options under the bash shell.
135 - Print rule name when a script rule crashes
136 - Allow the declaration of an expression list or parameter list
137 metavariable to specify the number of expressions or parameters,
138 respectively.
139
140 ** Bugfix:
141 - drop inconsistent paths check when only one node was matched
142 - better take into account virtual rules when selecting glimpse tokens
143 - print diff when only a comment is added
144 - the type of the C code !x should be int regardless of the type of x
145 - allow python code at the beginning of an included file
146 - better adjustment of whitespace when deleting adjacent lines. Thanks to
147 Wolfram Sang for pointing out the problem.
148 - allow metavariables to be inherited from included files
149 - allow ? on goto
150 - more graceful failure on finding a strange character in a macro parameter
151 list
152 - support Parameter metavariables
153 - add space after the last comma in an added portion of an argument list
154 - SmPL nameless struct should only match a nameless struct, not a nameless
155 union. Thanks to Peter Tummeltshammer for pointing out the problem.
156 - adjustments to storage don't modify inline as well
157 - matching and transformation allowed on inline
158 - allow removed field between two ... in structure initialization
159 - allow removing an entire structure initialization
160 - manage labels within do while 0 macros
161 - added space after : in printing a conditional expression. Thanks to Josh
162 Triplett for noticing the problem.
163 - dropped trailing whitespace when code at the end of a line is deleted.
164 Thanks to Josh Triplett for noticing the problem.
165 - Fixed environment management when script rule uses cache. Thanks to
166 Bissyande for finding the problem.
167 - when false matches if with no else
168 - ensure { ... } with whencode checks to the end of the function. Thanks to
169 Rene Rydhof Hansen for finding the problem.
170
171 * 0.2.2
172 ** Language:
173 - Added ToTestExpression to iso language, see standard.iso for an
174 explanation
175 - Added depends on to initialize and finalize script code
176
177 ** Features:
178 - Update Emacs mode (cocci.el) to support 'virtual' rules and fix other
179 keywords sush as 'depends on', 'using', 'disable'
180 - better treatment of != 0 in isos, communtativity for ==/!= for all
181 constants
182 - allow adding // comments and blank lines (even after cocci + code)
183 - Add support for multiple -I options
184
185 ** Bugfix:
186 - correct interaction between virtual rules and included .cocci files
187 - improvement in treatment of ! in isos, to avoid duplicating + code
188 - improvement in treatment of metavars as isos, to avoid duplicating + code
189 between toplevel and variable instantiation
190 - test expression of smpl conditional, etc no longer assumed to have type
191 int
192 - correct + line numbers in the patch produced when using *
193 - iso constant metavariable matches an identifier whose name is all capital
194 letters, eg NULL
195 - allow / at the end of the name of a directory (-dir) or patch prefix
196 (-patch)
197 - dropped space in + code after the binding of a type metavariable that is
198 a pointer type
199 - better handling of . or .. in -dir name
200 - allow keywords and metavariable names in identifier constraints (not sure
201 keywords is very useful, though)
202 - no lubtype on arguments of && and || in SmPL
203 - allow unknown as type for array indices in SmPL
204 - support matching of static annotation on functions that are both static
205 and inline
206 - support ENOTDIR error in Common.lfile_exists, to allow for the case where
207 an include file is in a subdirectory that exists but is an ordinary file,
208 not a directory.
209 - better management of unbound position variables that appear in
210 constraints
211 - cause python parser to skip over // comments, hoping that // is not
212 meaningful inside python
213 - require + on every line of a multiline comment
214 - correct calculation of line numbers when there is script code
215 - always annotate arguments of && || and ! as test expressions in C code.
216
217 * 0.2.1
218 ** Language:
219 - Add virtual identifiers
220 - Add coccilib.report and coccilib.trac Python modules
221 - coccilib.org and coccilib.report are imported by default but not loaded
222 in the current scope.
223
224 ** Features:
225 - Parse_error_msg now more helpful. New option -verbose_parsing for even
226 more information.
227 - Improve Python import handling. They are imported once during script
228 initialization.
229
230 ** Bugfix:
231 - correct treatment of depends on with || for virtual rules
232
233 * 0.2.0
234 ** Language:
235
236 ** Features:
237 - Remove duplicated code in disjunctions
238 - Better error message when grep finds nothing relevant. Thanks to Joe
239 Perches for the suggestion.
240 - added -keep_comments option for the unparsing of the transformed code
241 - Option "-version" now also gives information about built-in
242 Python binding support.
243 - slightly faster environment manipulation in pathological cases
244 - hack added to accept well-formed #define after function header
245
246 ** Bugfix:
247 - Proper consideration of #define macro arguments in checking for the use
248 of metavariables and in computing the line numbers of complex terms
249 - Better parsing of included .cocci files
250 - Put included .cocci files in the right order
251 - Bind position variables only once for #include
252 - Fix bug in include_match that caused everything to halt when all matches
253 were discarded
254 - Merge unlikely/likely iso rules under a iso rule named unlikely
255 - Some fixes to coccicheck rules, thanks to Andrew Lunn
256 - Support groups in regular expression, thanks to Michael Stefaniuc
257
258 * 0.1.11
259
260 ** Language:
261 - Meta-identifier/function and constant could be filtered from SmPL by
262 regular expressions using the "~=" and "!~=" operators followed by
263 an OCaml regular expression (see man Str) in double quote.
264 - Virtual rules, which can be referenced in depends, and set and unset
265 using the command-line options -D
266 - ++ for multiple additions
267
268 ** Features:
269 - coccicheck: a framework to check a series of SmPL files on a project
270 see scripts/coccicheck for more information
271
272 ** Bugfix:
273 - bind position variables to the correct starting position in the case of a
274 complex statement such as an if or while. Thanks to Derek Jones for
275 pointing out the problem.
276 - checking for non mentioned case lines in switch should be unchecked.
277 - space should be printed after sizeof when there are no parentheses around
278 the argument. Thanks to Daniel Walker for pointing out the problem.
279 - avoid introducing sharing in propagating ! over () in treatment of isos
280 - save_excursion has to handle and rethrow exceptions
281 - eliminate unnecessary consideration of CVS strings. Thanks to David
282 Young for pointing out the problem.
283 - completely new treatment of statement metavariables
284 - better type checking for macro definitions
285 - drop regression testing in -parse_c
286
287 * 0.1.10
288
289 ** Language:
290 - declarations allowed in switch, suggested by Derek M. Jones
291
292 ** Features:
293 - use interval timer for timeouts. Thanks to Derek M. Jones for the
294 implementation.
295 - more flexible env.sh, thanks to Derek Jones.
296 - faster Python invocation
297 - simplify unparsing in the sgrep case
298
299 ** Bugfix:
300 - for glimpse there is no point to create a pattern containing a numeric
301 constant because glimpse doesn't index them
302 - add spaces after commas in function calls and function headers
303 - made python integration more like the ubuntu version
304 http://patches.ubuntu.com/by-release/extracted/debian/c/coccinelle/0.1.5dbs-2/01-system-pycaml
305 this fixes some memory management problems with None, True, and False
306 - correct labels associated with a switch in the CFG so that a statement
307 metavariable can match a switch. Thanks to Derek Jones for pointing out
308 the problem.
309 - keep switch pattern within switch body. Thanks to Derek Jones for
310 pointing out the problem.
311 - Allow expanded tokens to be stored in metavariables, as long as they are
312 not removed. But this does currently allow them in + code, which will
313 produce the expansion. Thanks to Ali-Erdem Ozcan for pointing out the
314 problem.
315 - improved adjustment of spacing when code removed at the beginning of a line
316
317 * 0.1.9
318
319 ** Language:
320 - allow fresh identifiers to be declared using ## such that the value mixes
321 both strings and previously declared metavariables
322
323 ** Features:
324 - better handling of expanded code containing ##. Now compute the
325 result.
326 - more precise warning message for the "'\' outside define".
327 Thanks to Nicholas Mc Guire for pointing out the problem.
328 - more precise warning message related to ifdefization.
329 Thanks to Derek Jones for pointing out the problem.
330 - we don't create any more certain files in /tmp (they may be a cause
331 of security problems).
332 Thanks to Eugeniy Meshcheryakov for pointing out the problem.
333 - More optimization for the case of just deleting a complete function.
334 Allows this to happen without tracing through all the control-flow
335 paths. Thanks to Francois Bissyande for pointing out the problem.
336 - prevent code from being added to the beginning or end of a disjunction
337 - more information about why a script is not applied when using -debug option
338 - added -no_safe_expressions option
339 - added -no_loops option. Ignores back edges derived from looping
340 constructs. This is unsafe, but perhaps useful for bug finding, as it can
341 be more efficient.
342 - for semantic matches, allow "minus" on same code with multiple
343 environments
344 - better error message for mismatch of parenthesis in column 0 with normal
345 parenthesis. Thanks to Derek Jones for pointing out the problem.
346 - allow disjunctions on function return types. Thanks to Pierre Habouzit
347 for pointing this out.
348
349 ** Bugfix:
350 - keep disjunction in the proper order for structure initialization fields
351 - variables declared in different places should not seem to match each
352 other
353 - drop complaints about label metavariables not being used
354 - drop test information from the type of an expression when the expression
355 is bound to a metavariable
356 - nests should not extend beyond the before and after code, even if the
357 before and after code matches the nest code
358 - nests should extend into conditionals that end in error exit
359 - take into account metavariables on "else". Thanks to Derek Jones for
360 pointing out the problem.
361 - print single quotes on generated character constants
362 - better typedef handling in the initialisation/affectation builtin
363 isomorphism, cf -test init_affect_typedef
364 - support disjunction of types on variable declaration
365 - allow @ within strings in script code. ignore // comment lines in script
366 code.
367 - don't drop + code placed after the transformed code
368 - drop spaces produced by removing code before semicolons
369 - adjusted spacing within generated code
370 - less verbose -sp. Thanks to Derek Jones for pointing out the problem.
371 - accept multiple type names in a SmPL typedef declaration.
372
373 * 0.1.8
374
375 ** Language:
376
377 ** Features:
378 - Metavariables now capture the cpp code contained within their definitions
379 - When - fragments are separated by ... or nest boundaries in the semantic
380 patch, but end up matching adjacent source code, the comments, cpp code
381 and whitespace that are between them are not deleted.
382 - better parsing of C: do expansion of macros only when needed when
383 have actually a parse error and also leverage the definition of macros
384 in the parsed file (or in a optional_standard.h file passed as a parameter).
385 This should reduce the need for many hardcoded definitions in standard.h
386 - new semantics for the -macro_file option, by default now expand macros
387 only when necessary. To force use the -macro_file_builtins option instead.
388 - a new -extract_macros command line action to help the parser. Works with
389 the -macro_file option. e.g.
390 $ ./spatch -extract_macros ~/linux > /tmp/alldefs.h
391 $ ./spatch -macro_file /tmp/alldefs.h -sp_file foo.cocci -dir ~/linux
392 - removed -D macro_file option, not consistent with what -D usually means
393 - reattempt to be more efficient for statement metavariables that are just
394 placeholders (ie, no modification, no reuse)
395 - triples now returned from ctl in sorted order. The main key is the
396 state. On the other hand, the state order does not always agree with the
397 order of appearance in the code.
398 - spatch is now less verbose on the things it does yet handle. Less confusing
399 for new users.
400 - slightly better error report. Thanks to Derek Jones for the suggestion.
401 - added the options -linux_spacing and -smpl_spacing. -linux_spacing
402 causes spatch to follow the spacing conventions of Linux, while
403 -smpl_spacing causes spatch to follow the spacing in the semantic patch.
404 -linux_spacing is the default.
405 - more informative error reporting for the already tagged token case.
406 Thanks to Erik Hovland for the suggestion.
407
408 ** Bugfix:
409 - better parsing of declare macro at toplevel and in structure.
410 cf -text xfield
411 - allowing back typedef names for fieldname
412 - better printing of else in generated code
413 - slightly better type inference for binary operators.
414 - clear out declarer names and iterator names between SmPL files (for
415 -testall)
416 - better parsing and type checking of macro type aliases. Cf -test macro_int16.
417 Thanks to Li Yingtong for pointing out the problem.
418 - make insert_virtual_positions tail rec, avoid stack overflow pb.
419 Thanks to Diego Liziero <diegoliz@gmail.com> for pointing out the
420 problem.
421 - Better type inference for arithmetic binary operators
422 Thanks to Li Yingtong for pointing out the problem.
423 - Better type inference for constants
424 Thanks to Li Yingtong for pointing out the problem.
425 - move computing of adjacency information for semantic patches to after
426 application of isomorphisms, because isomorphisms can introduce "..."
427 - compute adjacency information for negated ...
428 - record with each transformation site the set of indices of the witness
429 trees that caused the transformation site to come about. Whitespace and
430 comments between remove tokens associated with disjoint witness trees is
431 not removed.
432 - correct treatment of function pointer typed parameters in the SmPL ast0
433 visitor.
434 - better parsing error message and error recovery when comments are not ended,
435 when some macros have a weird body, and when some switch have a weird
436 Body.
437 Thanks to Derek Jones for pointing out the problem.
438 - better detection and passing of "dangerous" ifdefs, cf -test
439 double_switch.
440 - dropped the separation of decls and body in Seq. This gives better
441 positioning of the bindings of metavariables shared between them.
442 Thanks to Erik Hovland for an example that shows the problem.
443
444 ** Internals:
445 - supress warning in compiling ocamlsexp (warning caused by a new behavior
446 of cpp used internally in processing files in ocamlsexp/)
447
448 * 0.1.7
449
450 ** Language:
451 - initialize and finalize script code, cf demos/initial_final.cocci
452
453 ** Features:
454 - -iso_limit option to limit the depth of isomorphism application
455 - with the dir option, the include path is implicitly set to the "include"
456 subdirectory of the specified directory, if the option -I is not used.
457 - give a seed for the name of a fresh identifier
458 - better handling of cpp "constructed" identifiers as in a##b, that in
459 the futur will make it easier to match over those idents.
460 cf tests/pb_parsing_macro.c. Thanks to Ali-Erdem Ozcan for pointing
461 out the problem. A new "parsing hack hint" is also available:
462 YACFE_IDENT_BUILDER, cf standard.h.
463
464 ** Bugfix:
465 - drop excessive "optimization" in ctl generation for while and for loops
466 - allow . as the name of the directory
467 - for type inference for an assignment, take the type of the right-hand
468 side expression, not the type of the assigned variable
469 - allow for with a declartion in the first header element, as in C++
470 (partial support)
471 - allow for matching against variable declarations that include only
472 storage, eg static, but no type at all.
473 - allow for matching against types that contain both short/long and int
474 - allow the type metavariable in the SmPL code "unsigned T" to match a T
475 that is a type consisting of more than one word, eg long int.
476 - -ifdef_to_if option made to process nested ifdefs
477 (partial support)
478
479 ** Internals:
480 - improve and fix installation process (usable on BSD)
481 - improve and fix testing process
482 - apply patches from Eugeniy Meshcheryakov
483 - reorganize the way we parse C identifiers, especially concatenated cpp
484 identifiers as in a##b. This may lead to some regressions as we may
485 not parse as much code as before.
486 - removed popl/ and popl09/ and popl related stuff from official distrib.
487
488 * 0.1.6
489
490 ** Language:
491 - the ability to add comments
492
493 ** Features:
494 - grouping of generated rules with -hrule option
495 - handling of special coccinelle comments
496 /* {{coccinelle:skip_start}} */ and
497 /* {{coccinelle:skip_end}} */
498 allowing to give more hints to the C parser.
499 Thanks to Flavien@lebarbe.net for the idea.
500 - the ability to print the values of more (but not all) kinds of
501 metavariables from python
502 - new vim SmPL mode.
503 Thanks to Alexander Faroy.
504
505 ** Bugfix:
506 - consider the ident tokens also in the 2 lines before the error line for the
507 10-most-problematic-parsing-errors diagnostic.
508 - SmPL parser allows cast as the argument of a pointer
509 - SmPL type checker allows enum as an array index
510 - Better generation of fresh metavariables names in hrule
511 - no more warnings about things that should be metavariables when there is
512 a disjunction in a function position
513 - bugfix in parser, better error message.
514 Thanks to Ali-Erdem OZCAN <ali-erdem.ozcan@st.com> for the bug report.
515
516 ** Internals:
517
518 * 0.1.5
519
520 ** Language:
521 - added initialiser metavariable
522 - added sequences of designators in structures
523
524 ** Features:
525 - improved printing of the C code corresponding to metavariables
526 - improved printing when code (eg declarations) is removed at the beginning
527 of a block, and then is followed by a blank line
528 - slightly less verbose error reporting in parsing_hacks
529
530 ** Bugfix:
531 - fixed some problems with parsing SmPL code where a nest appears after a |
532 - better treatment of { }, form in macros wrt unparse_c
533 - less quiet for -parse_c
534 - improve parsing heuristics regarding macro statement
535
536 ** Internals:
537
538 * 0.1.4
539
540 ** Language:
541 - long long added to SmPL
542
543 ** Documentation:
544 - add grammar reference and spatch command line options reference
545
546 ** Features:
547 - can match patterns of the form unsigned T or signed T, where T is a
548 metavariable
549 - dropped the sizeof_parens isomorphism, which was made redundant by the
550 paren isomorphism
551 - simple rule generation
552
553 ** Bugfix:
554 - trailing , ; and ) no longer left on a line by themselves
555 - better treatment of error exit when the searched for code matches the
556 error exit condition.
557 - fix incorrect treatment of parentheses in test_exps that could allow +
558 code to be added twice
559 - don't ask whether iterator names and declarer names should be declared as
560 metavariables.
561 - slightly better support for expression list metavariables.
562 - short and long allowed for array index types in SmPL
563 - more restrictions on type inference for pointer arithmetic in SmPL
564 - allow isomorphisms to apply when + code is anywhere within all - terms
565 - changed order of printing const and volatile
566 - allow eg ... <... in plus code
567 - better formatting of generated if/while/etc. code
568 - better parse error reporting when the problem is at the end of the file
569
570 ** Internals:
571 - isomorphisms don't apply under signed/unsigned, to prevent the creation
572 of things like unsigned signed int. Need a better solution for this.
573
574 * 0.1.3
575
576 ** Features:
577 - help in building the configuration macro file. The -parse_c action
578 now returns the 10 most frequent parsing errors. This give useful
579 hints to extend standard.h.
580
581 ** Bugfix:
582 - positions no longer allowed on \(, \|, and \)
583 - improved propagation of negation for isos in the presence of parens
584 - convert Todos in flow graph construction to recoverable errors
585 - fixed bug in treatment of when != true and when != false, to allow more
586 than one of them per ...
587 - improve parsing of typedef of function pointer.
588 - improve typing.
589 - parsing and typing support for old style C function declaration.
590 - consider position variables as modifications when optimizing the
591 translation into CTL of function definitions
592
593 ** Internals:
594
595 * 0.1.2
596
597 ** Bugfix:
598 - better handling of ifdef on statements in control flow graph.
599 - transform files even if they do not end in .c (thanks to Vegard Nossum)
600
601 ** Internals:
602 - merge code of yacfe
603
604 * 0.1.1
605
606 ** Language:
607 - support for initializer at toplevel, cf -test substruct
608
609 * 0.1
610
611 ** first public release of the source code:
612
613 ** Language:
614 - embeded python scripting
615 - position
616
617 ** Features
618
619 * beta
620
621 ** first public release of the binary
622
623 * alpha
624
625 ** Features
626 - lots of features ... look at coccinelle research papers and tutorials.