aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-11-16 23:58:13 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-11-16 23:58:13 +0100
commit329202a37f1c4325117fe83eaf22368088254b60 (patch)
tree6d26ed2619f70d3de76319cd28511d9cd59e39ff /doc
parent505921f8052bc33191fd95204b127626055d6ee3 (diff)
downloadlombok-329202a37f1c4325117fe83eaf22368088254b60.tar.gz
lombok-329202a37f1c4325117fe83eaf22368088254b60.tar.bz2
lombok-329202a37f1c4325117fe83eaf22368088254b60.zip
[Fixes #63] finished accept on patch request to add support for `@Builder` on instance methods by adding the changelog entry.
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 52ed1182..c4a353d7 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,7 +2,8 @@ Lombok Changelog
----------------
### v1.16.7 "Edgy Guinea Pig"
-* FEATURE: The `@Builder` annotation has received many updates: It now generates `clearFieldName()` methods if `@Singular` is used, ..... [Issue #967](https://github.com/rzwitserloot/lombok/issues/967).
+* FEATURE: `@Builder` updates: It now generates `clearFieldName()` methods if `@Singular` is used. [Issue #967](https://github.com/rzwitserloot/lombok/issues/967).
+* FEATURE: `@Builder` updates: The annotation can now be put on instance methods. [Issue #63](https://github.com/rzwitserloot/lombok/issues/63).
* FEATURE: A `lombok.config` key can now be used to make your fields `final` and/or `private`... __everywhere__. We'll be monitoring the performance impact of this for a while. We'll touch every source file if you turn these on, and even if you don't, we have to call into the lombok config system for every file.
* BUGFIX: `@Value` and `@FieldDefaults` no longer make uninitialized static fields final. [Issue #928](https://github.com/rzwitserloot/lombok/issues/928).
* BUGFIX: When using delombok, a source file with only `@NonNull` annotations on parameters as lombok feature would not get properly delomboked. [Issue #950](https://github.com/rzwitserloot/lombok/issues/950).