From 9dd81c336165fe36373a0136aa66cc04ff6ce873 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 21 Dec 2009 14:10:57 +0100 Subject: Added previous fixes to the changelog. --- doc/changelog.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 99bb7b75..1c1f1304 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,10 @@ Lombok Changelog ---------------- +### v0.9.3 +* Eclipse: `@Data` and other annotations now don't throw errors when you include fields with bounded wildcard generics, such as `List`. [Issue #84](http://code.google.com/p/projectlombok/issues/detail?id=84) +* plugins and `@SneakyThrows`: Resolving types in annotations now works better especially for classes that aren't in the core java libraries. [Issue #88](http://code.google.com/p/projectlombok/issues/detail?id=88) + ### v0.9.2 "Hailbunny" (December 15th, 2009) * preliminary support for lombok on NetBeans! - thanks go to Jan Lahoda from NetBeans. [Issue #20](http://code.google.com/p/projectlombok/issues/detail?id=20) * lombok now ships with the delombok tool, which copies an entire directory filled with sources to a new directory, desugaring any java files to what it would look like without lombok's transformations. Compiling the sources in this new directory without lombok support should result in the same class files as compiling the original with lombok support. Great to double check on what lombok is doing, and for chaining the delombok-ed sources to source-based java tools such as Google Web Toolkit or javadoc. lombok.jar itself also provides an ant task for delombok. [Full documentation of delombok](http://projectlombok.org/features/delombok.html). -- cgit