aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-08-13 14:12:25 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-08-13 14:12:25 +0100
commit244ad85116ffd585d1efb51ebeb787da0fd9eaef (patch)
treeee2fbf1bd86d1f40dee1423f00d0865d0ec83212 /doc
parenta03fa19b870381c11824c313114e63e553585066 (diff)
downloadlombok-244ad85116ffd585d1efb51ebeb787da0fd9eaef.tar.gz
lombok-244ad85116ffd585d1efb51ebeb787da0fd9eaef.tar.bz2
lombok-244ad85116ffd585d1efb51ebeb787da0fd9eaef.zip
added changelog for @Helper
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index ae8b07ab..5f145f83 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v1.16.5 "Edgy Guinea Pig"
+* FEATURE: `@Helper` can be placed on method-local inner classes to make all methods in the class accessible to the rest of the method. [Full documentation](https://projectlombok.org/features/experimental/Helper.html).
* BUGFIX: Parameterized static methods with `@Builder` would produce compiler errors in javac. [Issue #828](https://github.com/rzwitserloot/lombok/issues/828).
* PERFORMANCE: the config system caused significant slowdowns in eclipse if the filesystem is very slow (network file system) or has a slow authentication system.
* FEATURE: the `hashCode()` method generated by lombok via `@EqualsAndHashCode`, `@Data`, and `@Value` is now smarter about nulls; they are treated as if they hash to a magic prime instead of 0, which reduces hash collisions.