aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-03-22 17:17:06 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-03-22 17:17:06 +0100
commit4689d2a9bf79f592690a71e7ad7d25cb38b2344b (patch)
tree8f84d622bc93a351b13c0433a644c2e704ffbc31 /doc
parent389dbf5edadfb61e808e7d5273bb11990821ff9f (diff)
parenteb317c58df89c263b9ce12a49b0ab660e78b2f53 (diff)
downloadlombok-4689d2a9bf79f592690a71e7ad7d25cb38b2344b.tar.gz
lombok-4689d2a9bf79f592690a71e7ad7d25cb38b2344b.tar.bz2
lombok-4689d2a9bf79f592690a71e7ad7d25cb38b2344b.zip
Merge remote branch 'origin/master'
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 5d32c204..d1743147 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -4,6 +4,7 @@ Lombok Changelog
### v0.10.9 (edge)
* 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: When `@Delegate` would generate a method with type parameters of the type `T extends package.Class`, a dot would be prepended to the type name. [Issue #341](http://code.google.com/p/projectlombok/issues/detail?id=341)
+* BUGFIX: @Getter and @Setter now generate deprecated methods for deprecated fields. Fixes [Issue #342](http://code.google.com/p/projectlombok/issues/detail?id=342)
* 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: `@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: `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)