diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-12-19 21:42:12 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-12-19 21:42:12 +0100 |
commit | ab3d3ea0a444d39542605ee5f9c6e2cd8399ddb1 (patch) | |
tree | 09a6cddc2a2b4f86334b319380b83f56a8dde169 /doc | |
parent | b25a644f50e10540b7cb69189430d932a8750aec (diff) | |
parent | de1bc3524fc23eb9b3e93f8faa0d959a9940b16d (diff) | |
download | lombok-ab3d3ea0a444d39542605ee5f9c6e2cd8399ddb1.tar.gz lombok-ab3d3ea0a444d39542605ee5f9c6e2cd8399ddb1.tar.bz2 lombok-ab3d3ea0a444d39542605ee5f9c6e2cd8399ddb1.zip |
Merge branch 'master' of github.com:rzwitserloot/lombok
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 74930b33..ae14f357 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,9 +2,13 @@ Lombok Changelog ---------------- ### v0.10.5 (EDGE) -* BUGFIX: Performance issues (memory leaks) when using lombok in netbeans, introduced in 0.10, have been fixed. [Issue #242](http://code.google.com/p/projectlombok/issues/detail?id=242) * BUGFIX: Eclipse quickfix "Add unimplemented methods" would sometimes insert the new method stubs in strange places, especially if `@Data` was present. [Issue #51](http://code.google.com/p/projectlombok/issues/detail?id=51) +* BUGFIX: Eclipse quickfix "Assign parameter to new field" would insert it outside the class body if `@Data` was present. [Issue #222](http://code.google.com/p/projectlombok/issues/detail?id=222) +* BUGFIX: Performance issues (memory leaks) when using lombok in netbeans, introduced in 0.10, have been fixed. [Issue #242](http://code.google.com/p/projectlombok/issues/detail?id=242) +* BUGFIX: Renaming a @Data-annotated class in eclipse using Alt+Shift+R no longer mangles the data annotation. [Issue #286](http://code.google.com/p/projectlombok/issues/detail?id=286) * BUGFIX: Using save action 'Use this qualifier for field accesses, only if necessary' did not work together with `@Data` in certain cases. [Issue #301](http://code.google.com/p/projectlombok/issues/detail?id=301) +* BUGFIX: Organize imports, either run manually or as save action, would throw an exception. [Issue #308](http://code.google.com/p/projectlombok/issues/detail?id=308) +* BUGFIX: Extracted constants would be placed outside the class body when a logging annotation was present. [Issue #315](http://code.google.com/p/projectlombok/issues/detail?id=315) ### v0.10.4 (November 21st, 2011) * BUGFIX: Using the `log` field from `@Log`, etc, now works in static initializers. [Issue #295](http://code.google.com/p/projectlombok/issues/detail?id=295) |