aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2011-02-15 00:13:06 +0100
committerRoel Spilker <r.spilker@gmail.com>2011-02-15 00:13:06 +0100
commit2c3b34704a4491c837d4385e3b3f7a4117de3d39 (patch)
treed7701ae3b674a6e33e362bc01c692a10b952e5b3 /doc/changelog.markdown
parenta56e7d7db8cc494818d3404f4800e79a467f9e75 (diff)
downloadlombok-2c3b34704a4491c837d4385e3b3f7a4117de3d39.tar.gz
lombok-2c3b34704a4491c837d4385e3b3f7a4117de3d39.tar.bz2
lombok-2c3b34704a4491c837d4385e3b3f7a4117de3d39.zip
Updated changelog to represent fix for issue #177.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index f7452a99..059f99d2 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -12,7 +12,8 @@ Lombok Changelog
* 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)
* BUGFIX: Add null check for `@Cleanup` [Issue #154](http://code.google.com/p/projectlombok/issues/detail?id=154)
-* BUGFIX: The Eclipse source generator would place the generated code outside the class [Issue #154](http://code.google.com/p/projectlombok/issues/detail?id=155)
+* BUGFIX: The Eclipse source generator would place the generated code outside the class [Issue #155](http://code.google.com/p/projectlombok/issues/detail?id=155)
+* BUGFIX: When using m2eclipse, occasionally you'd see a ClassNotFoundError on JavacProcessingEnvironment. This has been fixed. [Issue #177](http://code.google.com/p/projectlombok/issues/detail?id=177)
### v0.9.3 "Burrowing Whale" (July 25th, 2010)
* FEATURE: Adding `@Getter` or `@Setter` to a class is now legal and is like adding those annotations to every non-static field in it. [Issue #129](http://code.google.com/p/projectlombok/issues/detail?id=129)