aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-03-25 23:11:48 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-03-25 23:11:48 +0100
commit228e99fe5203e92c7297325fec69a82abc1a4bd7 (patch)
treed3176a94f672a58f9c9927d812d048323080f363 /doc/changelog.markdown
parent535e20972c56e65b598df0d0849a25daa7a69e8d (diff)
downloadlombok-228e99fe5203e92c7297325fec69a82abc1a4bd7.tar.gz
lombok-228e99fe5203e92c7297325fec69a82abc1a4bd7.tar.bz2
lombok-228e99fe5203e92c7297325fec69a82abc1a4bd7.zip
[fixes #2046] you can now suppress the builder() method, useful if you only want toBuilder(). Also suppresses the warnings about any missing Builder.Default annotations.
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 17326a58..4f8d203e 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -3,6 +3,7 @@ Lombok Changelog
### v1.18.7 "Edgy Guinea Pig"
* BUGFIX: var/val on methods that return an intersection type would now work in Eclipse [Issue #1986](https://github.com/rzwitserloot/lombok/issues/1986)
+* 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)
### v1.18.6 (February 12th, 2019)
* FEATURE: Javadoc on fields will now also be copied to the Builders' setters. Thanks for the contribution, Emil Lundberg. [Issue #2008](https://github.com/rzwitserloot/lombok/issues/2008)