aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-12-19 23:27:59 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-12-19 23:27:59 +0100
commit2d0d4e75f0e6f86516000b8a0503446a44771bb7 (patch)
treeebb1c13eb9715776052ecc5b0c6c5087b0c7c9e2
parent102752a87b3fba82bbc67d997af619ef028af68c (diff)
downloadlombok-2d0d4e75f0e6f86516000b8a0503446a44771bb7.tar.gz
lombok-2d0d4e75f0e6f86516000b8a0503446a44771bb7.tar.bz2
lombok-2d0d4e75f0e6f86516000b8a0503446a44771bb7.zip
bumping version number pending official release of 0.10.6
-rw-r--r--doc/changelog.markdown4
-rw-r--r--src/core/lombok/core/Version.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index ae14f357..cc406e86 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,10 +1,10 @@
Lombok Changelog
----------------
-### v0.10.5 (EDGE)
+### v0.10.6 (December 19th, 2011)
+* PERFORMANCE: Performance issues (memory leaks) when using lombok in netbeans, introduced in 0.10, have been fixed. [Issue #242](http://code.google.com/p/projectlombok/issues/detail?id=242)
* BUGFIX: Eclipse quickfix "Add unimplemented methods" would sometimes insert the new method stubs in strange places, especially if `@Data` was present. [Issue #51](http://code.google.com/p/projectlombok/issues/detail?id=51)
* BUGFIX: Eclipse quickfix "Assign parameter to new field" would insert it outside the class body if `@Data` was present. [Issue #222](http://code.google.com/p/projectlombok/issues/detail?id=222)
-* BUGFIX: Performance issues (memory leaks) when using lombok in netbeans, introduced in 0.10, have been fixed. [Issue #242](http://code.google.com/p/projectlombok/issues/detail?id=242)
* BUGFIX: Renaming a @Data-annotated class in eclipse using Alt+Shift+R no longer mangles the data annotation. [Issue #286](http://code.google.com/p/projectlombok/issues/detail?id=286)
* BUGFIX: Using save action 'Use this qualifier for field accesses, only if necessary' did not work together with `@Data` in certain cases. [Issue #301](http://code.google.com/p/projectlombok/issues/detail?id=301)
* BUGFIX: Organize imports, either run manually or as save action, would throw an exception. [Issue #308](http://code.google.com/p/projectlombok/issues/detail?id=308)
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index 17b34f6b..1a218adb 100644
--- a/src/core/lombok/core/Version.java
+++ b/src/core/lombok/core/Version.java
@@ -28,7 +28,7 @@ public class Version {
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
// Note: In 'X.Y.Z', if Z is odd, its a snapshot build built from the repository, so many different 0.10.3 versions can exist, for example.
// Official builds always end in an even number. (Since 0.10.2).
- private static final String VERSION = "0.10.5";
+ private static final String VERSION = "0.10.6";
private static final String RELEASE_NAME = "Burning Emu";
private Version() {