diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-28 19:11:17 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-28 19:11:17 +0200 |
commit | 7c7c1b2f68c540f9905919f9dc4bc311192049df (patch) | |
tree | 6df9f3f8c8b76ca59f0e1f9754697c7e6c6c34c8 | |
parent | 357fd954e535943a79224c851784e22b6e3b4c90 (diff) | |
download | lombok-7c7c1b2f68c540f9905919f9dc4bc311192049df.tar.gz lombok-7c7c1b2f68c540f9905919f9dc4bc311192049df.tar.bz2 lombok-7c7c1b2f68c540f9905919f9dc4bc311192049df.zip |
Updated changelog to note issue 136 has been fixed.
-rw-r--r-- | doc/changelog.markdown | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 667e7dcf..d3e9e638 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,9 @@ Lombok Changelog ---------------- +### v0.9.4 (edge) +* 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) + ### 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) * FEATURE: Three new annotations, `@NoArgsConstructor`, `@RequiredArgsConstructor` and `@AllArgsConstructor` have been added. These split off `@Data`'s ability to generate constructors, and also allow you to finetune what kind of constructor you want. In addition, by using these annotations, you can force generation of constructors even if you have your own. [Issue #79](http://code.google.com/p/projectlombok/issues/detail?id=79) |