diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-08 00:00:47 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-08 00:00:47 +0200 |
commit | def5d05438d0fd29b578a89d2c7a0f4b160e7fd9 (patch) | |
tree | e780f5dcfdb9342226186d420b33d740c82dd154 | |
parent | bb09fa4f050a7f3cb172af69487de21d6d630bbd (diff) | |
download | lombok-def5d05438d0fd29b578a89d2c7a0f4b160e7fd9.tar.gz lombok-def5d05438d0fd29b578a89d2c7a0f4b160e7fd9.tar.bz2 lombok-def5d05438d0fd29b578a89d2c7a0f4b160e7fd9.zip |
As we just integrated the lombokpatcher branch, which is a pretty massive change, we've upped the next version number to 0.9.0
-rw-r--r-- | doc/changelog.markdown | 5 | ||||
-rw-r--r-- | src/lombok/core/Version.java | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 7e804c6d..16b3d826 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,11 @@ Lombok Changelog ---------------- +### v0.9.0 + +* The lombok class patching system has been completely revamped; the core business of patching class files has been offloaded in an independent project called 'lombok.patcher', which is now used to patch lombok into eclipse. +* Eclipse's "rename" refactor script, invoked by pressing CMD/CTRL+SHIFT+R, now works on `@Data` annotated classes. + ### v0.8.5 * There's now an `AccessLevel.NONE` that you can use for your `@Getter` and `@Setter` annotations to suppress generating setters and getters when you're using the `@Data` annotation. Address [Issue #37](http://code.google.com/p/projectlombok/issues/detail?id=37) diff --git a/src/lombok/core/Version.java b/src/lombok/core/Version.java index 6965c440..c92a8608 100644 --- a/src/lombok/core/Version.java +++ b/src/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.8.6-HEAD"; + private static final String VERSION = "0.9.0-HEAD"; private Version() { //Prevent instantiation |