aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorgrootjans <grootjans@gmail.com>2011-02-07 22:53:23 +0100
committergrootjans <grootjans@gmail.com>2011-02-07 22:53:23 +0100
commit492c6f3da86fd5deb4c842bdaadc6396dc831237 (patch)
treea889231c889254bdf5f24f0c1c4ea9d55a7aa4e8 /doc/changelog.markdown
parent7b3968fe401c1db299a34feaba8f862069723e36 (diff)
downloadlombok-492c6f3da86fd5deb4c842bdaadc6396dc831237.tar.gz
lombok-492c6f3da86fd5deb4c842bdaadc6396dc831237.tar.bz2
lombok-492c6f3da86fd5deb4c842bdaadc6396dc831237.zip
Updated changelog for @Delegate and 'val'
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index b3a29075..f7452a99 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,8 @@ Lombok Changelog
----------------
### v0.10.0 "Burning Emu" (edge)
+* FEATURE: New annotation: @Delegate. This annotation lets lombok generate delegation methods for a given field.
+* FEATURE: Added support for 'val'. Val is an immutable variable that infers it's type from the right hand side of an expression.
* FEATURE: Added support for several logging frameworks by the `@Log` annotation.
* FEATURE: Lombok now supports post-compile transformers. [Issue #144](http://code.google.com/p/projectlombok/issues/detail?id=144)
* FEATURE: Using `@SneakyThrows` no longer requires a runtime dependency on lombok.jar. In fact, any call to {@code Lombok.sneakyThrows(ex)} is optimized at the bytecode level and no longer requires you to actually have lombok.jar or lombok-runtime.jar on the classpath.