aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-03-27 00:42:34 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-03-27 00:42:34 +0200
commit48fbf86d5a27bcbafff03046097eb33a927bf6da (patch)
treeddec0a4b5ea040316e3aa59c2b50b9f3fc3eee38 /doc
parent777632f699355a5d2197989b5740c719836851a1 (diff)
downloadlombok-48fbf86d5a27bcbafff03046097eb33a927bf6da.tar.gz
lombok-48fbf86d5a27bcbafff03046097eb33a927bf6da.tar.bz2
lombok-48fbf86d5a27bcbafff03046097eb33a927bf6da.zip
pre-release version bump
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index f3284557..29330b53 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,7 +1,7 @@
Lombok Changelog
----------------
-### v0.10.9 (edge)
+### v0.11.0 (March 26th, 2012)
* FEATURE: [Experimental] 'fluent' getters and setters (using just `fieldName` as methodname instead of `getFieldName`), setters that return `this` instead of `void`, and support for fields with prefixes is introduced with this lombok version. Also, the number of parameters of any existing methods with the same name that lombok would generate are now taken into account; previously if you had any method named `setX` regardless of how many parameters it has, lombok would avoid generating a `setX` method. Now lombok generates the method if all present `setX` methods have a number of parameters other than 1. [documentation](http://projectlombok.org/features/experimental/Accessors.html).
* 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)
* FEATURE: Developing android apps on eclipse with lombok is now possible by running `java -jar lombok.jar publicApi` and including the generated jar in your project. [Documentation on using lombok for android development](http://projectlombok.org/setup/android.html).