aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-08-27 22:26:24 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-08-27 22:26:24 +0200
commit0221e460b2e648b142284c6c462d5798f33a3ff7 (patch)
tree42082ca5a41fa78fdcabf23870c98eee99201266 /doc/changelog.markdown
parent7c786f5af61185983940cad794fe2cb50d426005 (diff)
downloadlombok-0221e460b2e648b142284c6c462d5798f33a3ff7.tar.gz
lombok-0221e460b2e648b142284c6c462d5798f33a3ff7.tar.bz2
lombok-0221e460b2e648b142284c6c462d5798f33a3ff7.zip
Updated the changelog (WIP 0.8.4)
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 2ea8b705..a74990e4 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,6 +1,10 @@
Lombok Changelog
----------------
+### v0.8.4
+
+* All generated methods now make their parameters (if they have any) final. This should help avoid problems with the 'make all parameters final' save action in eclipse. [Issue #40](http://code.google.com/p/projectlombok/issues/detail?id=40)
+
### v0.8.3
* @EqualsAndHashCode (and, indirectly, @Data) generate a warning when overriding a class other than java.lang.Object but not setting EqualsAndHashCode's callSuper to true. There are, however, legitimate reasons to do this, so this warning is now no longer generated if you explicitly set callSuper to false. The warning text now also refers to this action if not calling super is intentional.