Whoops, forgot to update the changelog of 0.8.3.

This commit is contained in:
Reinier Zwitserloot
2009-08-21 12:10:54 +02:00
parent b92926b6f7
commit 8aab4e60d6
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ public class CompileChangelog {
</java>
</target>
<target name="maven" depends="version, dist">
<target name="maven" depends="version, dist" description="Build a maven repository.">
<loadresource property="mvn.oldversions">
<url url="http://projectlombok.org/mavenrepo/org/projectlombok/lombok/maven-metadata.xml" />
<filterchain>
+3
View File
@@ -4,6 +4,9 @@ Lombok Changelog
### v0.8.3
* @EqualsAndHashCode (and, indirectly, @Data) generate a warning when overriding a class other than java.lang.Object but not setting EqualsAndHashCode's callSuper to true. There are, however, legitimate reasons to do this, so this warning is now no longer generated if you explicitly set callSuper to false. The warning text now also refers to this action if not calling super is intentional.
* If your fields have @NonNull or @NotNull annotations, then generated setters are generated with a null check, and the
annotation is copied to the setter's parameter, and the getter's method.
* An annoying bug that usually showed up if you had package-info.java files has been fixed. It would cause a `NullPointerException` at lombok.javac.apt.Processor.toUnit(Processor.java:143)
### v0.8.2