aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2016-12-05 23:41:38 +0100
committerRoel Spilker <r.spilker@gmail.com>2016-12-05 23:41:38 +0100
commitcf82dcfb8057637255ce223671a8d727fe0a073a (patch)
treed7359b41ad7732c507b59b7c78003863ab1d44a7 /doc
parent0727c8bfd305408074d908dc4f8c31c0bff54789 (diff)
downloadlombok-cf82dcfb8057637255ce223671a8d727fe0a073a.tar.gz
lombok-cf82dcfb8057637255ce223671a8d727fe0a073a.tar.bz2
lombok-cf82dcfb8057637255ce223671a8d727fe0a073a.zip
Fixes #1236: Getter(lazy=true) now emits an error when used on a transient field
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 3aafea13..149c14c1 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -3,10 +3,11 @@ Lombok Changelog
### v1.16.11 "Edgy Guinea Pig"
* v1.16.10 is the latest release
-* CHANGE: `@Value` and `@FieldDefaults` no longer touch static fields [Issue #1254](https://github.com/rzwitserloot/lombok/issues/1254)
* FEATURE: `var` is the mutable sister of `val`. For now experimental, and opt-in using `ALLOW` in the flagUsage configuration key. Thanks for the contribution, Bulgakov Alexander.
-* BUGFIX: Annotation Processors that use ecj internally (dagger) no longer give linkage errors [Issue #1218](https://github.com/rzwitserloot/lombok/issues/1218)
+* CHANGE: `@Value` and `@FieldDefaults` no longer touch static fields [Issue #1254](https://github.com/rzwitserloot/lombok/issues/1254)
* BUGFIX: `val` in lambda expressions now work as expected [Issue #911](https://github.com/rzwitserloot/lombok/issues/911)
+* BUGFIX: `Getter(lazy=true)` now emits an error message when used on a transient field [Issue #1236](https://github.com/rzwitserloot/lombok/issues/1236)
+* BUGFIX: Annotation Processors that use ecj internally (dagger) no longer give linkage errors [Issue #1218](https://github.com/rzwitserloot/lombok/issues/1218)
* PLATFORM: Red Hat JBoss Developer Studio is now correctly identified by the installer [Issue #1164](https://github.com/rzwitserloot/lombok/issues/1164)
* BUGFIX: delombok: for-loops with initializers that are not local variables would be generated incorrectly [Issue #1076](https://github.com/rzwitserloot/lombok/issues/1076)