diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:44:18 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-15 04:44:18 +0100 |
commit | b4a8affec27ac09fd5bceeaad6a46f4bc6f18034 (patch) | |
tree | 5dbe6608fb1a066c506c49f64fa467ebc7892017 | |
parent | df5324e2d7f2ce12b691954dd79714ad7496b406 (diff) | |
download | lombok-b4a8affec27ac09fd5bceeaad6a46f4bc6f18034.tar.gz lombok-b4a8affec27ac09fd5bceeaad6a46f4bc6f18034.tar.bz2 lombok-b4a8affec27ac09fd5bceeaad6a46f4bc6f18034.zip |
Updated changelog with the recent changes.
-rw-r--r-- | doc/changelog.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index bf9ccab2..e65ec79b 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,8 +2,10 @@ Lombok Changelog ---------------- ### v0.10.9 (edge) -* ENHANCEMENT: `val` is no longer legal inside basic for loops (the old kind, not the foreach kind). These variables should rarely be final, and in practice it wasn't possible to delombok this code properly. [Issue #346](http://code.google.com/p/projectlombok/issues/detail?id=346) * FEATURE: The combination of `@Delegate` and `@Getter` or `@Data` will now delegate to the result of a generated getter. [Issue #328](http://code.google.com/p/projectlombok/issues/detail?id=328) +* BUGFIX: `@Getter(lazy=true)` where the variable type is a primitive and the initializing expression is of a different primitive type that would type coerce implicitly, i.e. ints can be assigned to longs without a cast, didn't work before. [Issue #345](http://code.google.com/p/projectlombok/issues/detail?id=345) +* BUGFIX: Using `val` with a type like `Outer<TypeArgs>.Inner` now works. [Issue #343](http://code.google.com/p/projectlombok/issues/detail?id=343) +* BUGFIX: `val` is no longer legal inside basic for loops (the old kind, not the foreach kind). These variables should rarely be final, and in practice it wasn't possible to delombok this code properly. [Issue #346](http://code.google.com/p/projectlombok/issues/detail?id=346) ### v0.10.8 (January 19th, 2012) * FEATURE: `@Delegate` can now be used on a no-argument method, which works similarly to adding it to fields. See [documentation](http://projectlombok.org/features/Delegate.html). |