diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-21 14:10:57 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-21 14:10:57 +0100 |
commit | 9dd81c336165fe36373a0136aa66cc04ff6ce873 (patch) | |
tree | d4ba5e42ffa6d031afa72f1ea51ce466fcd60bee | |
parent | 2c8032a243b6788f9d28fff712c897509f517852 (diff) | |
download | lombok-9dd81c336165fe36373a0136aa66cc04ff6ce873.tar.gz lombok-9dd81c336165fe36373a0136aa66cc04ff6ce873.tar.bz2 lombok-9dd81c336165fe36373a0136aa66cc04ff6ce873.zip |
Added previous fixes to the changelog.
-rw-r--r-- | doc/changelog.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
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<? extends Number>`. [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). |