diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-09-20 20:49:51 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-09-20 20:49:51 +0200 |
commit | edffb00cfd06f030238d6defe710080cb3eb0a82 (patch) | |
tree | 5457e5b9ab65960e075eeb568a4db4654df01c18 | |
parent | 41abd976afe0be0e4c7c2dbd6aee576fa41e8c47 (diff) | |
download | lombok-edffb00cfd06f030238d6defe710080cb3eb0a82.tar.gz lombok-edffb00cfd06f030238d6defe710080cb3eb0a82.tar.bz2 lombok-edffb00cfd06f030238d6defe710080cb3eb0a82.zip |
preparing for an edge release, and updated changelog.
-rw-r--r-- | doc/changelog.markdown | 4 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 2 | ||||
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index b38fcf89..d784ec42 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,5 +1,9 @@ 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) +* 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) * FEATURE: New annotation: @Delegate. This annotation lets lombok generate delegation methods for a given field. [More…](http://projectlombok.org/features/Delegate.html) * FEATURE: Added support for 'val'. Val is an immutable variable that infers its type from the right hand side of the initializing expression. [More…](http://projectlombok.org/features/val.html) diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 0c7d83d9..5e6cf5d5 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.0"; + private static final String VERSION = "0.10.1-EDGE"; private static final String RELEASE_NAME = "Burning Emu"; private Version() { diff --git a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java index 465b27fc..e689ab39 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchDelegate.java @@ -28,7 +28,6 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; -import java.util.IdentityHashMap; import java.util.List; import java.util.Map; import java.util.Set; |