blob: 23e513265f869ef405f26dcd54f8059ed44613f1 [file] [log] [blame] [view]
Danny van Bruggenc2f83d12017-09-03 19:24:49 +02001Version 3.3.4
2------------------
3[issues resolved](https://github.com/javaparser/javaparser/milestone/56?closed=1)
4* `SourceZip` has been added.
5Use it to read source code from jars or zip files.
6Thank you @ryan-beckett !
7* JavaCC was upgraded to 7.0.2
8* A new option for the pretty printer was added.
9You can now wrap-and-column-align parameters of method calls.
10Thank you @tarilabs !
11
Danny van Bruggen0962cf82017-08-27 20:20:12 +020012Version 3.3.3
13------------------
14[issues resolved](https://github.com/javaparser/javaparser/milestone/55?closed=1)
15* Parsing a partial java file (like an expression or statement) no longer ignores trailing code.
16* New memory saving option: turn off token list.
17
Danny van Bruggenb20badc2017-08-20 23:08:26 +020018Version 3.3.2
19------------------
20[issues resolved](https://github.com/javaparser/javaparser/milestone/54?closed=1)
Sebastian Kürtena6cbccd2017-08-25 11:14:35 +020021* `VisitorMap` lets you override hashcode/equals for nodes when used as a key for a map.
Danny van Bruggenb20badc2017-08-20 23:08:26 +020022
Danny van Bruggene40e4e22017-08-13 22:26:18 +020023Version 3.3.1
24------------------
25[issues resolved](https://github.com/javaparser/javaparser/milestone/53?closed=1)
26* The token list is now mutable - see methods on `JavaToken`.
27This caused mild breakage - some fields have become `Optional`.
28
Danny van Bruggen3cd1be02017-07-26 19:31:35 +020029Version 3.3.0
30------------------
31[issues resolved](https://github.com/javaparser/javaparser/milestone/52?closed=1)
32* Breaking: `TryStmt::tryBlock` and `EnclosedExpr::inner` were optional for no good reason. Now they are required.
33* You can now ask a `JavaToken` for its category, which is useful for examining the token list or doing syntax highlighting or so.
34* `enum` and `strictfp` can now be used as identifiers on lower Java versions.
35
Danny van Bruggen5e6d7292017-07-16 22:19:10 +020036Version 3.2.12
37------------------
38[issues resolved](https://github.com/javaparser/javaparser/milestone/51?closed=1)
39
Danny van Bruggen969b7f62017-07-10 21:03:41 +020040Version 3.2.11
41------------------
42[issues resolved](https://github.com/javaparser/javaparser/milestone/50?closed=1)
43* We're up to date with the latest Java 9 module system again.
44
Danny van Bruggen3d195982017-07-05 12:02:09 +020045Version 3.2.10
Danny van Bruggenb5b70ee2017-07-02 20:36:42 +020046------------------
47[issues resolved](https://github.com/javaparser/javaparser/milestone/49?closed=1)
48* `Node.replace(old, new)` was added, including property-specific `X.replaceY(newY)` methods
49
Danny van Bruggen3d195982017-07-05 12:02:09 +020050Version 3.2.9
51------------------
52Scrapped due to release problem.
53
Danny van Bruggen1fb7c9d2017-06-18 18:10:59 +020054Version 3.2.8
55------------------
56[issues resolved](https://github.com/javaparser/javaparser/milestone/48?closed=1)
57* Added `isInnerClass()` that checks if a `ClassOrInterfaceDeclaration` is an inner class (note: this is different from a nested class!)
58* @ryan-beckett contributed a huge [Eclipse setup guide](https://github.com/javaparser/javaparser/wiki/Eclipse-Project-Setup-Guide)
59
Danny van Bruggenc7f87802017-06-11 15:57:27 +020060Version 3.2.7
61------------------
62[issues resolved](https://github.com/javaparser/javaparser/milestone/47?closed=1)
63* We now recover from some parse errors! [Here is an article](https://matozoid.github.io/2017/06/11/parse-error-recovery.html)
64
Danny van Bruggen9250ffa2017-06-04 20:50:37 +020065Version 3.2.6
66------------------
67[issues resolved](https://github.com/javaparser/javaparser/milestone/46?closed=1)
68* `EmptyMemberDeclaration` is gone!
69It was deprecated for a while because it it was in the AST, but doesn't have any meaning in a Java program.
70`EmptyStmt` was also deprecated, but that has been reverted.
71This node *does* have meaning.
72
Danny van Bruggenee5691c2017-05-22 19:47:13 +020073Version 3.2.5
74------------------
75[issues resolved](https://github.com/javaparser/javaparser/milestone/45?closed=1)
76* `NodeWithCondition` was added on all nodes containing a condition.
77* Lots of work on improving lexical preservation.
78* If a file was parsed from a file system, you can now get path information etc. from `CompilationUnit`
79* API BREAKING: every node now points to its start and end token.
80Some of the API has started returning `TokenRange` instead of `Range` - you can call `toRange` to get the old object type.
81We may still change the naming of some of this code in the following month.
82
Danny van Bruggen5201adc2017-05-14 14:00:56 +020083Version 3.2.4
84------------------
85New style changelog, no more issue numbers, but a link:
86[issues resolved](https://github.com/javaparser/javaparser/milestone/44?closed=1)
87and any notable changes:
88* the new method `Node.removeForced()` by removing it, or removing the first parent that is optional.
89This is different from `Node.remove()`, `remove()` only tries to remove the node from the parent and fails if it can't.
90* `FieldAccessExpr.scope` is now a required property.
91You might find some `get()`s in your code that are no longer necessary.
92* `ReferenceType` no longer has a type parameter, so every `ReferenceType<?>` can be replaced by `ReferenceType` now.
93
Danny van Bruggen9c513212017-04-30 22:15:44 +020094Version 3.2.3
95------------------
96* 907 906 905 903 911 910 909 908 smaller improvements and fixes
97
Danny van Bruggendc8077a2017-04-23 12:04:03 +020098Version 3.2.2
99------------------
100Beta: `TreeStructureVisitor`.
101
102* 770 902 904 901 smaller improvements and fixes
103
Danny van Bruggen28cf0be2017-04-16 15:05:10 +0200104Version 3.2.1
105------------------
106Beta: `TreeStructureVisitor`.
107
108* Maven dependencies were updated to their latest versions
109* 890 the concept of "method signature" now exists in JavaParser
110* 896 891 889 887 882 789 smaller improvements and fixes
111
Danny van Bruggen7a3b9602017-04-02 21:39:40 +0200112Version 3.2.0
113------------------
114The lexical preservation code is stable!
115
116Beta: `TreeStructureVisitor`.
117
118* 885 884 879 878 smaller improvements and fixes
119
Danny van Bruggencadeeb52017-03-26 20:40:56 +0200120Version 3.1.4
121------------------
122This is the first version to parse Java 9.
123
124Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
125
126* 872 873 874 787 Remaining Java 9 work.
127
Danny van Bruggen64dd2802017-03-19 13:52:35 +0100128Version 3.1.3
129------------------
130Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
131
132A start has been made on source level support. The default level is Java 8.
133It can be set to Java 9 like this for a parser *instance*:
134```java
135private final JavaParser parser = new JavaParser(new ParserConfiguration().setValidator(new Java9Validator()));
136```
137and like this for the static parse methods:
138```java
139JavaParser.getStaticConfiguration().setValidator(new Java9Validator());
140```
141
142* 862 552 "_" is an illegal identifier on source level 9.
143* 869 867 109 855 857 smaller improvements and fixes
144
Danny van Bruggen79776b72017-03-11 15:07:40 +0100145Version 3.1.2
146------------------
147Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
148
149* 594 849 831 a validation framework was introduced to inform about problems in the AST without needing to change the grammar,
150and without requiring parsing code.
151It is open for extension by users.
152* 852 853 826 832 846 839 smaller improvements and fixes
153
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100154Version 3.1.1
155------------------
156Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
157
158* 654 124 lexical preservation (printing source code with the same formatting it had when parsing) has been added.
159 Thank you @ftomassetti for a lot of work!
160* 554 800 first (big) step towards Java 9 support: JavaParser can read project Jigsaw module definitions.
161* 795 786 751 extend the TreeVisitor with more traversal options. Thanks @ryan-beckett!
162* 791 `GenericListVisitorAdapter` has been added which collects its results in a list. Thanks @Gottox!
163* 815 798 797 813 clean up Problem text
164* 819 818 817 816 441 809 808 807 fix various absurd annotation related issues.
165* 777 805 802 796 790 792 793 781 784 785 783 782 779 357 799 763 smaller improvements and fixes
166
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100167Version 3.1.0
168------------------
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100169Beta: `TreeStructureVisitor` and `ConcreteSyntaxModel`.
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100170
171* 705 755 Add the concrete syntax model, which will give you information about the exact syntax a certain nodes matches.
172
173* 777 smaller improvements and fixes
174
Danny van Bruggenadae33f2017-02-14 19:59:50 +0100175Version 3.1.0-beta.2
176------------------
177This version is a beta because `TreeStructureVisitor` is not in its definite state yet.
178
179* 762 761 772 merge `javaparser-metamodel` and `javaparser-generator-utils` into `javaparser-core`.
180* 766 the `ModifierVisitor` is now created by a code generator. Its behaviour has been made logical, and may give different results than before.
181* 755 `ConstructorDeclaration` and `MethodDeclaration` now share a parent: `CallableDeclaration`
182* 687 759 773 769 768 767 765 759 smaller improvements and fixes
183
Danny van Bruggen23d54772017-02-05 16:21:16 +0100184Version 3.1.0-beta.1
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100185------------------
Danny van Bruggen23d54772017-02-05 16:21:16 +0100186This version is a beta because there are a lot of new features that may still change.
187
188This version needs a minor version increase because of a backwards compatability issue:
189* 719 `getJavadoc`, `getJavadocComment` and `getComment` could return null. Our promise was to return `Optional`, so that is what they do now.
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100190
191New:
Danny van Bruggene6079d82017-02-05 16:50:01 +0100192* 658 718 736 737 we have created a metamodel.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100193It gives information about the structure of the various AST nodes, as if you are introspecting them.
194You can find it in `javaparser-metamodel`, the main class is `JavaParserMetaModel`
Danny van Bruggene6079d82017-02-05 16:50:01 +0100195* 353 365 visitors are no longer hand made, they are now generated from the metamodel. This should make them 100% reliable.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100196Affected visitors are: `GenericVisitorAdapter`, `EqualsVisitor`, `VoidVisitorAdapter`, `VoidVisitor`, `GenericVisitor`, `HashCodeVisitor`, `CloneVisitor`.
197
198If you want to generate your own visitors, you can use the `VisitorGenerator` class from `javaparser-core-generators`
199
200If you want to reuse the code generation utilities, look at module `javaparser-generator-utils` - there is a very useful `SourceRoot` class in there that takes away a lot of file management troubles.
Danny van Bruggene6079d82017-02-05 16:50:01 +0100201* 538 735 `TreeStructureVisitor` has been added, which should be considered beta.
202* 220 733 717 749 745 750 743 748 666 732 746 734 733 smaller improvements and fixes
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100203
Danny van Bruggenc5f6e9b2017-01-15 20:58:52 +0100204Version 3.0.1
205------------------
206* 699 433 325 Javadoc can now be parsed
207* 703 696 added NodeWithOptionalScope
208* 702 FieldAccessExpr now implements NodeWithSimpleName, *which means that "field" has been renamed to "name"*
209* 707 706 improve range of array types and levels
210* 709 smaller improvements and fixes
211
Danny van Bruggen1804ea22017-01-07 23:06:22 +0100212Version 3.0.0
213------------------
214* 695 697 689 680 693 691 682 690 677 679 688 684 683 smaller improvements and fixes
215
Danny van Bruggene11ed222016-12-24 22:25:49 +0100216Version 3.0.0-RC.4
217------------------
218* 668 669 TypeDeclarationStmt became LocalClassDeclarationStmt
219* 347 665 every node now has some documentation
220* 660 670 673 four types of import declaration have been merged back into the old ImportDeclaration
221* 659 The pretty printer can now take customized visitors
222* 650 671 672 674 524 smaller improvements and fixes
223
Danny van Bruggenfc9c4a92016-12-18 23:13:10 +0100224Version 3.0.0-RC.3
225------------------
226* 639 622 632 657 656 652 653 647 648 645 194 643 630 624 628 627 626 625 623 cleanups, small fixes, and general housekeeping
227
Danny van Bruggendd5d4d02016-12-09 16:40:59 +0100228Version 3.0.0-RC.2
229------------------
230* 593 EmptyImportDeclaration and NonEmptyImportDeclaration have been removed
231* 612 VariableDeclaratorId has been removed. It has been substituted by "SimpleName name"
232* 614 617 the list of tokens has been linearized and simplified
233* 615 support for arrays has once more been changed. See [the issue](https://github.com/javaparser/javaparser/issues/592)
234* 580 453 380 618 580 611 610 424 608 smaller improvements and fixes
235
Danny van Bruggen61aaeaf2016-12-01 18:37:11 +0100236Version 3.0.0-RC.1
237------------------
238* 499 601 renames many fields to be more consistent
239* 596 605 602 604 smaller improvements and fixes
240
Danny van Bruggen47379542016-11-27 16:54:33 +0100241Version 3.0.0-alpha.11
242------------------
243* 547 595 Node.range is now using Optional instead of Range.UNKNOWN
Danny van Bruggen6738e1c2016-11-28 19:46:45 +0100244* 584 588 548 585 bug fixes and improvements
Danny van Bruggen47379542016-11-27 16:54:33 +0100245
matozoidf52d1ad2016-11-20 16:36:22 +0100246Version 3.0.0-alpha.10
247------------------
248* 578 579 577 575 290 570 568 567 562 564 551 bug fixes and improvements
249
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100250Version 3.0.0-alpha.9
251------------------
252* 403 358 549 Make all names nodes: either SimpleName or Name. This makes every name in the AST visitable. NameExpr is now a wrapper to use SimpleName in an expression.
matozoidd2c9f432016-11-13 17:29:38 +0100253* 516 536 use Optional<> for return values.
matozoid789ddfe2016-11-13 17:33:43 +0100254* 556 557 558 550 small improvements and fixes.
255* 560 559 make nodes observable.
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100256
matozoidaa79a622016-11-06 14:13:37 +0100257Version 3.0.0-alpha.8
258------------------
259* 344 529 turn DumpVisitor into an official PrettyPrinter
260* 532 508 427 530 531 513 528 cleanups
261
matozoidde10e892016-10-26 19:48:54 +0200262Version 3.0.0-alpha.7
263------------------
matozoid57a10942016-10-30 21:14:28 +0100264* 515 roll back attempt at using Optional
265* 522 504 make NodeList not a Node (restores parent/children behaviour to before alpha.4)
266* 527 526 rename getChildrenNodes to getChildNodes
267* 525 495 520 bug fix
matozoidde10e892016-10-26 19:48:54 +0200268
269Version 3.0.0-alpha.6
270------------------
271* 503 modified ImportDeclaration hierarchy to have getters for static and "asterisk" again
272* 506 bug fix
273
matozoid9ac80482016-10-16 22:08:51 +0200274Version 3.0.0-alpha.5
275------------------
276* 451 null is no longer allowed in the AST. [See last post in issue](https://github.com/javaparser/javaparser/issues/451)
277* 501 421 420 316 use a special type of list for nodes: NodeList. [See last post in issue](https://github.com/javaparser/javaparser/issues/421)
278
matozoid93c5ac12016-10-09 22:03:29 +0200279Version 3.0.0-alpha.4
280------------------
281* 463 471 nodes can now be removed easily
282* 491 import handling changed. Instead of "ImportDeclaration", we now have the four types of import as described in the JLS. [See issue](https://github.com/javaparser/javaparser/pull/491)
283* 452 355 474 494 various improvements
284* 493 492 485 Simplify the JavaParser interface
285
matozoid6ea2c522016-09-30 18:55:44 +0200286Version 3.0.0-alpha.3
287------------------
matozoid93c5ac12016-10-09 22:03:29 +0200288* 112 237 466 465 461 460 458 457 fundamentally changes how we deal with arrays. [It is explained in the last post here](https://github.com/javaparser/javaparser/issues/237)
matozoid6ea2c522016-09-30 18:55:44 +0200289* 472 456 makes the "data" field on every node more structured.
290* 477 468 refactor TypeArguments. You will find that TypeArguments is no longer a type, it is just a list in some nodes.
291* 482 adds the "nodeTypes" packages to the osgi export.
292* 479 476 makes all setters on nodes return this so they become chainable.
293* 473 437 clean up CloneVisitor.
matozoid53d288a2016-07-18 13:32:44 +0200294
matozoid6ea2c522016-09-30 18:55:44 +0200295Version 3.0.0-alpha.2
296------------------
297* 157 a new parser frontend, check https://github.com/javaparser/javaparser/pull/447 for explanations
298* 435 more builder methods like 400 and 405
299* 111 440 443 444 445 446 bugs & cleanups
matozoid53d288a2016-07-18 13:32:44 +0200300
matozoid6ea2c522016-09-30 18:55:44 +0200301Version 3.0.0-alpha.1
302------------------
303* 400 405 introduce many "builder" style methods for constructing code. Thanks DeepSnowNeeL!
304* 409 remove ASTHelper (methods are now on specific Node subclasses)
305* 414 JavaParser can now be instantiated and reused. InstanceJavaParser removed
306* 418 417 411 408 bugs
307* 367 420 407 402 various cleanups
308
309Version 2.5.1
matozoid53d288a2016-07-18 13:32:44 +0200310-------------
matozoid6ea2c522016-09-30 18:55:44 +0200311* 394 OSGi manifest added
312* 391 fix ModifierVisitor NullPointerException bug
313* 385 a few new parse methods
314* 386 fix dumping an empty import (a single ; after the package declaration)
matozoid53d288a2016-07-18 13:32:44 +0200315
316Version 2.5.0
317-------------
318API breaking changes:
319
320* 191: moved TreeVisitor to visitor package
321* 368, 162, 303, 302, 360: use correct type in some places.
322* 371: code is now compiled with Java 8
323* 342, 331: ModifierVisitorAdapter detects and removes broken nodes
324* 328, 270: upgrade JavaCC (use TokenMgrException now)
325Other changes:
326
327* 297: enable access to tokens.
328* 341, 361: node positions are now OO
329* 211, 373: escaping of \n \r for string literals
330* 336, 276, 141: JavaDoc support now works
331* 337, 281: reorganize the stream reading code
332* 343, 309, 332, 57: take advantage of common interfaces
333* 329, 326, 327: deal with platform issues
334* 163, 236, 252, 296, 269, 339, 321, 322, 252, 253, 293, 295: various fixes
335* 310, 311, 313, 301, 294: some code clean-ups
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200336
matozoid6ea2c522016-09-30 18:55:44 +0200337Version 2.4.0
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200338-------------
matozoid6ea2c522016-09-30 18:55:44 +0200339* several fixes in DumpVisitor for bugs due to lazy initialization
340* make TypeDeclaration implements DocumentableNode directly
341* TypedNode interface introduced
342* introduce MultiBoundType
343* refactored IntersectionType and UnionType
344* refactored CatchClause
345* parsing annotations in throws declarations
346* parse orphan semicolons in import statements
347* added PackageDeclaration.getPackageName
348* solved issue with newlines in string literals
349* fixed handling of UnknownType in EqualsVisitor
350* improvements to CommentsParser
351* removing old grammar
matozoid13818472016-08-23 22:03:06 +0200352
matozoid6ea2c522016-09-30 18:55:44 +0200353Version 2.3.0
354-------------
355* ClassOrInterfaceType implements NamedNode
356* DumpVisitor can now be extended
357* Improved documentation
358* AST: lists are now lazy initialized
matozoid8669cf42016-09-30 18:39:12 +0200359
Danny van Bruggen27b32072017-02-19 23:27:37 +0100360Version 2.1.0
matozoideae61572016-09-30 18:57:34 +0200361-------------
362* Features
363 * [#75 performance improvement for `PositionUtils.sortByBeginPosition`](https://github.com/javaparser/javaparser/issues/75)
364 * [#64 In getDeclarationAsString parameter names should be optional](https://github.com/javaparser/javaparser/issues/64)
365* Bugfixes
366 * [#79 Fix NPE in `ConstructorDeclaration.getDeclarationAsString`](https://github.com/javaparser/javaparser/pull/79)
367 * [#86 Add missing functions to ModifierVisitorAdapter](https://github.com/javaparser/javaparser/pull/86)
368 * [#82 set LambdaExpr as parent of its child nodes](https://github.com/javaparser/javaparser/issues/82)
369 * [#87 implement `setJavadoc` and `getJavadoc` at various classes](https://github.com/javaparser/javaparser/issues/87)
370 * [#96 Fixed encoding issue in `Javaparser.parse`](https://github.com/javaparser/javaparser/pull/96)
371 * [#85 Casting a lambda expression causes a parsing failure](https://github.com/javaparser/javaparser/issues/85)
372 * [#88 `MethodReferenceExpr` and `TypeExpr` don't set themselves as parents](https://github.com/javaparser/javaparser/issues/88)
373* Internal
374 * [#89 CommentsParser.State contains unused fields](https://github.com/javaparser/javaparser/issues/89)
375 * Switched from drone.io to [Travis](https://travis-ci.org/javaparser/javaparser)
376 * [#105 Enforce compiling the library for a certain Java version](https://github.com/javaparser/javaparser/pull/105)
377
378[Code changes](https://github.com/javaparser/javaparser/compare/javaparser-parent-2.0.0...master)
379
380Version 2.0.0
381-------------
382* support Java 8
Danny van Bruggen27b32072017-02-19 23:27:37 +0100383
384Version 1.0.8 (2010-01-17)
385-------------
386* Fixed issues:
387 * Issue 17: A refactor suggestion for AnnotationExpr and its subclasses
388 * Issue 21: Java 5 JavaParser compiled JARs
389 * Issue 22: Please use java.lang.reflect.Modifier constants in japa.parser.ast.body.ModifierSet
390 * Issue 27: Implement the "equal" method
391 * Issue 30: equals and hashCode methods
392
393Version 1.0.7 (2009-04-12)
394-------------
395* Issue 19 fixed:
396* Tests changed to run with junit 4
397
398Version 1.0.6 (2009-01-11)
399-------------
400* Issue 11 fixed: changed method get/setPakage to get/setPackage in the class CompilationUnit
401* Created new visitor adapter to help AST modification: ModifierVisitorAdapter
402* Changed visitor adapters to abstract
403
404Version 1.0.5 (2008-10-26)
405-------------
406* Created simplified constructors in the nodes of the AST (without positional arguments)
407* Created ASTHelper class with some helpful methods (more methods are still needed)
408
409Version 1.0.4 (2008-10-07)
410-------------
411* Moved to javacc 4.1.
412* The java_1_5.jj can be build alone without compilation errors
413
414Version 1.0.3 (2008-09-06)
415-------------
416* Removed SuperMemberAccessExpr class, it was no longer used
417* Removed the methods get/setTypeArgs() from ArrayCreationExpr, this node shouldn't have these methods.
418* Fixed the bug with start/end position of the nodes IntegerLiteralMinValueExpr and LongLiteralMinValueExpr
419* The methods get/setAnnotations() from all BodyDeclaration subclasses were pushed down to BodyDeclaration class
420
421Version 1.0.2 (2008-07-20)
422-------------
423* Issue fixed: Issue 1: Add support for editing AST nodes or create new ones
424
425Version 1.0.1 (2008-07-01)
426-------------
427* Issue fixed: Issue 5: end line and end column equal to begin line and begin column
428
429Version 1.0.0 (2008-06-25)
430-------------
431* Changed version numbering, starting version 1.0.0
432* Javadoc done for packages:
433 * japa.parser
434 * japa.parser.ast
435* Corrected bug when parsing in multithread:
436 * JavaParser.setCacheParser(false) must be called before to use the parser concurrent
437
4382008-06-19
439-------------
440* No code changes, added binary distribution to download page
441
4422008-06-11
443-------------
444* Bug corrected: NPE in VoidVisitorAdapter
445 * http://code.google.com/p/javaparser/issues/detail?id=2
446
4472008-06-09
448-------------
449* Added Adapters for de visitors
450
4512008-05-28
452-------------
453* This project now is published at Google Code:
454 * http://code.google.com/p/javaparser/
455
4562008-05-25
457-------------
458* Added support for comments and javadoc to the tree.
459 * Javadocs are stored directly to members (BodyDeclaration and all deriveds (classes, methods, fields, etc.)), accessible by the method getJavadoc().
460 * All comments are stored in the CompilationUnit, accessible by the method getComments().
461
4622008-04-01
463-------------
464* Changed all nodes public attributes to be private and created getters to access them
465* Changed the methods of the Node getLine e getColumn to getBeginLine and getBeginColumn
466* Added the methods getEndLine and getEndColumn to the Node class (works only in the BlockNode)
467
4682007-12-22
469-------------
470* Corrected ConditionalExpression bug
471
4722007-10-21
473-------------
474* Added LGPL License
475
4762007-10-21
477-------------
478* Bugs corrected:
479 * Created PackageDeclaration member of CompilationUnit to add suport for annotations in the package declaration
480 * Parameterized anonymous constructor invocation
481 * Explicit constructor invotation Type Arguments
482 * ctrl+z ("\u001A") ar end of compilation unit
483
4842007-10-09
485-------------
486* EnumConstantDeclaration annotation support corrected
487* Parssing Java Unicode escape characters suport added
488
4892007-10-03
490-------------
491* Bug corrected: "MotifComboPopup.this.super()" statement was generating parser error
492
4932007-10-01
494-------------
495* Bug corrected: Casting signed primitive values
496```
497 double d = (double) -1;
498 ^
499```
5002007-08-06
501-------------
502* Bug with the single line comments in the final of the unit corrected
503
5042007-07-31
505-------------
506* Fixed the bug with the following expression: `Class c = (int.class);`
507
5082007-06-26
509-------------
510* Bug fixes from Leon Poyyayil work
511 * suport for hex floating point
512 * unicode digits in indentifier
513 * MemberValueArrayInitializer
514
5152007-03-09
516-------------
517* Long and Integer literal MIN_VALUE bug
518
5192007-02-24
520-------------
521* '\0' bug fixed
522
5232007-02-01
524-------------
525* Many bug fixes
526* Added line/column to nodes