aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2019-03-26 00:27:41 +0100
committerRoel Spilker <r.spilker@gmail.com>2019-03-26 00:27:41 +0100
commit5d4066ed48a092ad89cb9013bcb6958c093bc9e0 (patch)
treef6b4f72da7cf5408897bd95804440d2e71981b23
parent1e49706bb8ebec196dfaec267e7a92ef93411d0d (diff)
downloadlombok-5d4066ed48a092ad89cb9013bcb6958c093bc9e0.tar.gz
lombok-5d4066ed48a092ad89cb9013bcb6958c093bc9e0.tar.bz2
lombok-5d4066ed48a092ad89cb9013bcb6958c093bc9e0.zip
changelog update
-rw-r--r--doc/changelog.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index ac1bb097..7c1cfd1c 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -4,7 +4,8 @@ Lombok Changelog
### v1.18.7 "Edgy Guinea Pig"
* FEATURE: You can now suppress generation of the `builder` method when using `@Builder`; usually because you're only interested in the `toBuilder` method. As a convenience we won't emit warnings about missing `@Builder.Default` annotations when you do this. [Issue #2046](https://github.com/rzwitserloot/lombok/issues/2046)
* FEATURE: When using `@NonNull`, or any other annotation that would result in a null-check, you can configure to generate an assert statement instead. [Issue #2078](https://github.com/rzwitserloot/lombok/issues/2078).
-* BUGFIX: var/val on methods that return an intersection type would now work in Eclipse [Issue #1986](https://github.com/rzwitserloot/lombok/issues/1986)
+* BUGFIX: var/val on methods that return an intersection type would now work in Eclipse. [Issue #1986](https://github.com/rzwitserloot/lombok/issues/1986)
+* BUGFIX: Fix for java6 regression if a field has javadoc. [Issue #2066](https://github.com/rzwitserloot/lombok/issues/2066)
* IMPROBABLE BREAKING CHANGE: For fields and parameters marked non-null, if the method body starts with an assert statement to ensure the value isn't null, no code to throw an exception will be generated.
### v1.18.6 (February 12th, 2019)