aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-04-23 23:47:46 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-04-23 23:47:46 +0200
commitce7e755cf78af1936d8996b1486e638db227e88e (patch)
treee780ddc3ff73acf61e4255cf14e3486cc830a439
parent0268a9f02075d0aff3099e721a99956dbc715f6e (diff)
downloadlombok-ce7e755cf78af1936d8996b1486e638db227e88e.tar.gz
lombok-ce7e755cf78af1936d8996b1486e638db227e88e.tar.bz2
lombok-ce7e755cf78af1936d8996b1486e638db227e88e.zip
added some notes on what we fixed since 0.11.0 release.
Also belatedly bumped version to 0.11.1.
-rw-r--r--doc/changelog.markdown7
-rw-r--r--src/core/lombok/core/Version.java2
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 29330b53..5801a80e 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,8 +1,13 @@
Lombok Changelog
----------------
+### v0.11.1 (EDGE)
+* BUGFIX: Eclipse refactor script 'rename method arguments' should work more often with lombok-affected methods.
+* BUGFIX: Using 'val' in an enhanced for loop did not work if the iterable was a raw type.
+* FEATURE: ONGOING: Fix for using lombok together with gwt-designer.
+
### v0.11.0 (March 26th, 2012)
-* FEATURE: [Experimental] 'fluent' getters and setters (using just `fieldName` as methodname instead of `getFieldName`), setters that return `this` instead of `void`, and support for fields with prefixes is introduced with this lombok version. Also, the number of parameters of any existing methods with the same name that lombok would generate are now taken into account; previously if you had any method named `setX` regardless of how many parameters it has, lombok would avoid generating a `setX` method. Now lombok generates the method if all present `setX` methods have a number of parameters other than 1. [documentation](http://projectlombok.org/features/experimental/Accessors.html).
+* FEATURE: {Experimental} 'fluent' getters and setters (using just `fieldName` as methodname instead of `getFieldName`), setters that return `this` instead of `void`, and support for fields with prefixes is introduced with this lombok version. Also, the number of parameters of any existing methods with the same name that lombok would generate are now taken into account; previously if you had any method named `setX` regardless of how many parameters it has, lombok would avoid generating a `setX` method. Now lombok generates the method if all present `setX` methods have a number of parameters other than 1. [documentation](http://projectlombok.org/features/experimental/Accessors.html).
* FEATURE: The combination of `@Delegate` and `@Getter` or `@Data` will now delegate to the result of a generated getter. [Issue #328](http://code.google.com/p/projectlombok/issues/detail?id=328)
* FEATURE: Developing android apps on eclipse with lombok is now possible by running `java -jar lombok.jar publicApi` and including the generated jar in your project. [Documentation on using lombok for android development](http://projectlombok.org/setup/android.html).
* BUGFIX: In NetBeans the generated default constructor would still be generated even if Lombok also generated constructors. [Issue #326](http://code.google.com/p/projectlombok/issues/detail?id=326)
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index de730b7f..367ba92f 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.0";
+ private static final String VERSION = "0.11.1";
private static final String RELEASE_NAME = "Burning Emu";
private Version() {