diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-10-03 19:11:43 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-10-03 19:11:43 +0200 |
commit | fc72a48f17661bc6a42816b3ebba0319d2847747 (patch) | |
tree | c4639b8621aa52fea7c999a9d28c0e82dc7f18f6 | |
parent | 8b283e89e9e96cf21428ce0ecbdc0699a26d4213 (diff) | |
download | lombok-fc72a48f17661bc6a42816b3ebba0319d2847747.tar.gz lombok-fc72a48f17661bc6a42816b3ebba0319d2847747.tar.bz2 lombok-fc72a48f17661bc6a42816b3ebba0319d2847747.zip |
Preparing for release 0.10.1. Tiny one, but solves enough crucial bugs to warrant a new version.
-rw-r--r-- | doc/changelog.markdown | 1 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index e6ff3024..9bdfd96a 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v0.10.1 (edge) * BUGFIX: `@Delegate` in eclipse could cause memory leaks in 0.10.0. [Issue #264](http://code.google.com/p/projectlombok/issues/detail?id=264) * BUGFIX: Annotations on enum values were being deleted by delombok. [Issue #269](http://code.google.com/p/projectlombok/issues/detail?id=269) +* BUGFIX: `@AllArgsConstructor` was erroneously generating a parameter and an assignment for final variables already assigned in their declaration. [Issue #278](http://code.google.com/p/projectlombok/issues/detail?id=278) * ENHANCEMENT: `@NotNull` is now also recognized as an annotation indicating that lombok should generate nullcheck guards in generated constructors and setters. [Issue #271](http://code.google.com/p/projectlombok/issues/detail?id=271) ### v0.10.0 "Burning Emu" (August 19th, 2011) diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 5e6cf5d5..f7c947d5 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -26,7 +26,7 @@ package lombok.core; */ public class Version { // ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries). - private static final String VERSION = "0.10.1-EDGE"; + private static final String VERSION = "0.10.1"; private static final String RELEASE_NAME = "Burning Emu"; private Version() { |