From bcdd5226cec974df0518415d1ca4d21aef79a239 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sun, 15 Aug 2010 23:57:00 +0200 Subject: Documented the addition of the post-process stuff, which fixes issue 144. --- doc/changelog.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc') 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) -- cgit