diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 23:57:00 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 23:57:00 +0200 |
commit | bcdd5226cec974df0518415d1ca4d21aef79a239 (patch) | |
tree | 2587dbc049377b5fbda1c5ea818d605e46acae1a /doc | |
parent | 431543afcd5b5982c1a8cd749495b95d2143747d (diff) | |
download | lombok-bcdd5226cec974df0518415d1ca4d21aef79a239.tar.gz lombok-bcdd5226cec974df0518415d1ca4d21aef79a239.tar.bz2 lombok-bcdd5226cec974df0518415d1ca4d21aef79a239.zip |
Documented the addition of the post-process stuff, which fixes issue 144.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 27d4608c..d203dc44 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,8 @@ Lombok Changelog ---------------- ### v0.9.4 (edge) +* 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. * BUGFIX: `@Setter` and `@Getter` can now be applied to static fields again (was broken in v0.9.3 only). [Issue #136](http://code.google.com/p/projectlombok/issues/detail?id=136) * BUGFIX: delombok added type parameters to constructors that mirror the type's own type parameters. This resulted in delombok turning any generated constructor that takes at least 1 parameter of type 'T' into something that didn't compile, and to boot, a confusing error message ('T is not compatible with T'). This is now fixed. [Issue #140](http://code.google.com/p/projectlombok/issues/detail?id=140) |