aboutsummaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
authorDanny van Bruggen <hexagonaal@gmail.com>2017-02-19 23:27:37 +0100
committerDanny van Bruggen <hexagonaal@gmail.com>2017-02-19 23:27:37 +0100
commit27b3207e6fe53aeb7f37934219e9d2038736404d (patch)
treeba4ba86e4902155589e3c866fdfb8cf44c9f3b22 /changelog.md
parenta4358a0d8d11138f5b16631d661f930f2e35cd5b (diff)
downloadjavaparser-27b3207e6fe53aeb7f37934219e9d2038736404d.tar.gz
Old release notes
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md146
1 files changed, 145 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index edab27253..c6d0f73aa 100644
--- a/changelog.md
+++ b/changelog.md
@@ -191,7 +191,7 @@ Version 2.3.0
* Improved documentation
* AST: lists are now lazy initialized
-Version 2.1.0-SNAPSHOT
+Version 2.1.0
-------------
* Features
* [#75 performance improvement for `PositionUtils.sortByBeginPosition`](https://github.com/javaparser/javaparser/issues/75)
@@ -214,3 +214,147 @@ Version 2.1.0-SNAPSHOT
Version 2.0.0
-------------
* support Java 8
+
+Version 1.0.8 (2010-01-17)
+-------------
+* Fixed issues:
+ * Issue 17: A refactor suggestion for AnnotationExpr and its subclasses
+ * Issue 21: Java 5 JavaParser compiled JARs
+ * Issue 22: Please use java.lang.reflect.Modifier constants in japa.parser.ast.body.ModifierSet
+ * Issue 27: Implement the "equal" method
+ * Issue 30: equals and hashCode methods
+
+Version 1.0.7 (2009-04-12)
+-------------
+* Issue 19 fixed:
+* Tests changed to run with junit 4
+
+Version 1.0.6 (2009-01-11)
+-------------
+* Issue 11 fixed: changed method get/setPakage to get/setPackage in the class CompilationUnit
+* Created new visitor adapter to help AST modification: ModifierVisitorAdapter
+* Changed visitor adapters to abstract
+
+Version 1.0.5 (2008-10-26)
+-------------
+* Created simplified constructors in the nodes of the AST (without positional arguments)
+* Created ASTHelper class with some helpful methods (more methods are still needed)
+
+Version 1.0.4 (2008-10-07)
+-------------
+* Moved to javacc 4.1.
+* The java_1_5.jj can be build alone without compilation errors
+
+Version 1.0.3 (2008-09-06)
+-------------
+* Removed SuperMemberAccessExpr class, it was no longer used
+* Removed the methods get/setTypeArgs() from ArrayCreationExpr, this node shouldn't have these methods.
+* Fixed the bug with start/end position of the nodes IntegerLiteralMinValueExpr and LongLiteralMinValueExpr
+* The methods get/setAnnotations() from all BodyDeclaration subclasses were pushed down to BodyDeclaration class
+
+Version 1.0.2 (2008-07-20)
+-------------
+* Issue fixed: Issue 1: Add support for editing AST nodes or create new ones
+
+Version 1.0.1 (2008-07-01)
+-------------
+* Issue fixed: Issue 5: end line and end column equal to begin line and begin column
+
+Version 1.0.0 (2008-06-25)
+-------------
+* Changed version numbering, starting version 1.0.0
+* Javadoc done for packages:
+ * japa.parser
+ * japa.parser.ast
+* Corrected bug when parsing in multithread:
+ * JavaParser.setCacheParser(false) must be called before to use the parser concurrent
+
+2008-06-19
+-------------
+* No code changes, added binary distribution to download page
+
+2008-06-11
+-------------
+* Bug corrected: NPE in VoidVisitorAdapter
+ * http://code.google.com/p/javaparser/issues/detail?id=2
+
+2008-06-09
+-------------
+* Added Adapters for de visitors
+
+2008-05-28
+-------------
+* This project now is published at Google Code:
+ * http://code.google.com/p/javaparser/
+
+2008-05-25
+-------------
+* Added support for comments and javadoc to the tree.
+ * Javadocs are stored directly to members (BodyDeclaration and all deriveds (classes, methods, fields, etc.)), accessible by the method getJavadoc().
+ * All comments are stored in the CompilationUnit, accessible by the method getComments().
+
+2008-04-01
+-------------
+* Changed all nodes public attributes to be private and created getters to access them
+* Changed the methods of the Node getLine e getColumn to getBeginLine and getBeginColumn
+* Added the methods getEndLine and getEndColumn to the Node class (works only in the BlockNode)
+
+2007-12-22
+-------------
+* Corrected ConditionalExpression bug
+
+2007-10-21
+-------------
+* Added LGPL License
+
+2007-10-21
+-------------
+* Bugs corrected:
+ * Created PackageDeclaration member of CompilationUnit to add suport for annotations in the package declaration
+ * Parameterized anonymous constructor invocation
+ * Explicit constructor invotation Type Arguments
+ * ctrl+z ("\u001A") ar end of compilation unit
+
+2007-10-09
+-------------
+* EnumConstantDeclaration annotation support corrected
+* Parssing Java Unicode escape characters suport added
+
+2007-10-03
+-------------
+* Bug corrected: "MotifComboPopup.this.super()" statement was generating parser error
+
+2007-10-01
+-------------
+* Bug corrected: Casting signed primitive values
+```
+ double d = (double) -1;
+ ^
+```
+2007-08-06
+-------------
+* Bug with the single line comments in the final of the unit corrected
+
+2007-07-31
+-------------
+* Fixed the bug with the following expression: `Class c = (int.class);`
+
+2007-06-26
+-------------
+* Bug fixes from Leon Poyyayil work
+ * suport for hex floating point
+ * unicode digits in indentifier
+ * MemberValueArrayInitializer
+
+2007-03-09
+-------------
+* Long and Integer literal MIN_VALUE bug
+
+2007-02-24
+-------------
+* '\0' bug fixed
+
+2007-02-01
+-------------
+* Many bug fixes
+* Added line/column to nodes