diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-21 12:10:54 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-08-21 12:10:54 +0200 |
commit | 8aab4e60d62eaad04f5df8fb78621d53d12da2db (patch) | |
tree | 802ba40b104c8cfdbe127e0106bfd162f201b5aa | |
parent | b92926b6f7b5106c9bb3b944eb851c6fc1ef289d (diff) | |
download | lombok-8aab4e60d62eaad04f5df8fb78621d53d12da2db.tar.gz lombok-8aab4e60d62eaad04f5df8fb78621d53d12da2db.tar.bz2 lombok-8aab4e60d62eaad04f5df8fb78621d53d12da2db.zip |
Whoops, forgot to update the changelog of 0.8.3.
-rw-r--r-- | build.xml | 2 | ||||
-rw-r--r-- | doc/changelog.markdown | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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> diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 8ab9a7dd..2ea8b705 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -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 |