aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2013-03-25 20:31:18 +0100
committerRoel Spilker <r.spilker@gmail.com>2013-03-25 20:31:18 +0100
commitf36deeb25f7ff4799b754482c014a413250b33a5 (patch)
treecdad5343e429b8a243db02b9e826205099b1d34f /doc
parentd7776a91222c943aeb25cf61444df46fe5cdebfa (diff)
parent66f32d5073bc726f76f958471ea93ec5a29c354b (diff)
downloadlombok-f36deeb25f7ff4799b754482c014a413250b33a5.tar.gz
lombok-f36deeb25f7ff4799b754482c014a413250b33a5.tar.bz2
lombok-f36deeb25f7ff4799b754482c014a413250b33a5.zip
Fixed merge conflict in changelog
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index a415cd01..043e524e 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -4,6 +4,10 @@ Lombok Changelog
### v0.11.7 (Edgy Guinea Pig)
* CHANGE: {Experimental} The experimental `@Value` feature no longer implies the also experimental `@Wither`. If you like your `@Value` classes to make withers, add `@Wither` to the class right next to `@Value`.
* FEATURE: {Experimental} Reintroduced `onMethod`, `onConstructor` and `onParam` to `@Getter`, `@Setter`, `@Wither`, and `@XArgsConstructor`. These parameters allow you to add annotations to the methods/constructors that lombok will generate. This is a workaround feature: The stability of the feature on future versions of javac is not guaranteed, and if a better way to implement this feature is found, this feature's current incarnation will be removed without a reasonable period of deprecation. [Documentation on the onX feature](http://projectlombok.org/features/experimental/onX.html)
+* FEATURE: Added support for Log4j v2.0 via `@Log4j2` [Issue #432](http://code.google.com/p/projectlombok/issues/detail?id=432)
+* ENHANCEMENT: The Lombok installer can now find and install lombok into [JBoss Developer Studio](http://www.redhat.com/products/jbossenterprisemiddleware/developer-studio/). The installer will now also look for eclipse and eclipse variants in your home directory. [Issue #434](http://code.google.com/p/projectlombok/issues/detail?id=432)
+* BUGFIX: `@ExtensionMethods` no longer causes `VerifyError` exceptions when running eclipse-compiled code if extension methods are called on expressions which are method calls whose return type is a type variable. For example, `someList.get(i).extensionMethod()` would fail that way. [Issue #436](http://code.google.com/p/projectlombok/issues/detail?id=436)
+* BUGFIX: java 7's try-with-resources statement did not delombok correctly. [Issue #459](http://code.google.com/p/projectlombok/issues/detail?id=459)
### v0.11.6 (October 30th, 2012)
* FEATURE: Lombok can be disabled entirely for any given compile run by using JVM switch `-Dlombok.disable`. This might be useful for code style checkers and such.