aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 00:41:32 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 00:41:32 +0200
commita3180298305ff64e9f671b51d663b750ba7c8efa (patch)
treee95b5b966046d09171c346065c778385af89b72c /doc/changelog.markdown
parentec04d9d7f077b83071de84a337338c9983db43bf (diff)
downloadlombok-a3180298305ff64e9f671b51d663b750ba7c8efa.tar.gz
lombok-a3180298305ff64e9f671b51d663b750ba7c8efa.tar.bz2
lombok-a3180298305ff64e9f671b51d663b750ba7c8efa.zip
[fixes #2083] adds feature ‘access level’ to `@Builder`
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index b7f678a7..614848cb 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -3,6 +3,7 @@ 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: You can now change the access modifier of generated builder classes. [Issue #2083](https://github.com/rzwitserloot/lombok/issues/2083).
* 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).
* PLATFORM: A few lombok features (most notably delombok) failed on JDK12. [Issue #2082](https://github.com/rzwitserloot/lombok/issues/2082)
* BUGFIX: var/val on methods that return an intersection type would now work in Eclipse. [Issue #1986](https://github.com/rzwitserloot/lombok/issues/1986)