From 8aab4e60d62eaad04f5df8fb78621d53d12da2db Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 21 Aug 2009 12:10:54 +0200 Subject: Whoops, forgot to update the changelog of 0.8.3. --- build.xml | 2 +- doc/changelog.markdown | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index 39bf3dcb..2c3bebb0 100644 --- a/build.xml +++ b/build.xml @@ -355,7 +355,7 @@ public class CompileChangelog { - + 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 -- cgit