aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-05-28 13:03:54 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-05-30 20:26:20 +0200
commit7bbb7cf3ca25cb8727a6ec226de1ed1fc5bf47e9 (patch)
treed0f191ed53996636d86fd8c308337cd64c8bdd7e /doc/changelog.markdown
parentb3b91a0ddd1770f8646d27e421e2cfef96940f8f (diff)
downloadlombok-7bbb7cf3ca25cb8727a6ec226de1ed1fc5bf47e9.tar.gz
lombok-7bbb7cf3ca25cb8727a6ec226de1ed1fc5bf47e9.tar.bz2
lombok-7bbb7cf3ca25cb8727a6ec226de1ed1fc5bf47e9.zip
Fixes for issue 470: VerifyErrors when using @SneakyThrows.
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 3eb8b5f5..e2e3d6b5 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v0.11.9 (Edgy Guinea Pig)
+* BUGFIX: Usage of `Lombok.sneakyThrow()` or `@SneakyThrows` would sometimes result in invalid classes (classes which fail with `VerifyError`). [Issue #470](https://code.google.com/p/projectlombok/issues/detail?id=470)
* BUGFIX: Using `val` in try-with-resources did not work for javac. [Issue #520](https://code.google.com/p/projectlombok/issues/detail?id=520)
* BUGFIX: When using `@Data`, warnings are not generated if certain aspects are not generated because you wrote explicit versions of them. However, this gets confusing with `equals` / `hashCode` / `canEqual`, as nothing is generated if any one of those methods is present. Now, if one of `equals` or `hashCode` is present but not the other one (or `canEqual` is present but `equals` and/or `hashCode` is missing), a warning is emitted to explain that lombok will not generate any of the equals / hashCode methods, and that you should either write them all yourself or remove them all. [Issue #513](https://code.google.com/p/projectlombok/issues/detail?id=513)