aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-08-13 02:51:36 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-08-13 02:51:36 +0200
commit767d9f7cadded7c2254bb3f6af1c09bccf467d98 (patch)
tree4d8ac452fd1182080446f8fd02dbf1eb4caebec5
parentafcb211e47f387c5c9b42a0d954e247aec84e781 (diff)
downloadlombok-767d9f7cadded7c2254bb3f6af1c09bccf467d98.tar.gz
lombok-767d9f7cadded7c2254bb3f6af1c09bccf467d98.tar.bz2
lombok-767d9f7cadded7c2254bb3f6af1c09bccf467d98.zip
prerelease version bump
-rw-r--r--doc/changelog.markdown3
-rw-r--r--src/core/lombok/core/Version.java2
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 4ff9b39f..e2b4d132 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,13 +1,14 @@
Lombok Changelog
----------------
-### v0.11.3 (Edgy Guinea Pig)
+### v0.11.4 (August 13th, 2012)
* FEATURE: {Experimental} `@Value`, `@Wither` and `@FieldDefaults` are now available. These are a lot like `@Data` but geared towards immutable classes. [Documentation on @Value](http://projectlombok.org/features/experimental/Value.html), [Documentation on @Wither](http://projectlombok.org/features/experimental/Wither.html) and [Documentation on @FieldDefaults](http://projectlombok.org/features/experimental/FieldDefaults.html).
* BUGFIX: Eclipse would throw an OOME if using `@ExtensionMethod`. [Issue #390](http://code.google.com/p/projectlombok/issues/detail?id=390)
* BUGFIX: {Netbeans} `@Cleanup` and `@Synchronized` cause far fewer issues in the netbeans editor. [Issue #393](http://code.google.com/p/projectlombok/issues/detail?id=393)
* BUGFIX: {Installer} Erroneous messages about the installer complaining about needing root access when installing or removing lombok from eclipse installs has been fixed. The installer edge of this problem was actually already fixed in v0.11.2. [Issue #363](http://code.google.com/p/projectlombok/issues/detail?id=363)
* BUGFIX: `@ExtensionMethod` had all sorts of issues in javac. [Issue #399](http://code.google.com/p/projectlombok/issues/detail?id=399)
* BUGFIX: Generating static constructors with javac when you have fields with generics, i.e. `Class<T>`, caused errors. [Issue #396](http://code.google.com/p/projectlombok/issues/detail?id=396)
+* BUGFIX: Minor `@ExtensionMethod` issues in eclipse, such as the ability to call extension methods on a `super` reference which is now no longer possible. [Issue #406](http://code.google.com/p/projectlombok/issues/detail?id=406)
### v0.11.2 "Dashing Kakapo" (July 3rd, 2012)
* FEATURE: {Experimental} `@ExtensionMethod` is now available to add extensions to
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index a895da1e..3f28a601 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.11.3";
+ private static final String VERSION = "0.11.4";
private static final String RELEASE_NAME = "Dashing Kakapo";
private Version() {