diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-09-10 00:09:55 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-09-10 00:09:55 +0200 |
commit | 0ac3aedbca28844a1220a77c0403e56106011947 (patch) | |
tree | e1554c958528617048f2276235316ca01e233204 | |
parent | 52d4c81a590f790de057653e7ffd091b6706ee34 (diff) | |
download | lombok-0ac3aedbca28844a1220a77c0403e56106011947.tar.gz lombok-0ac3aedbca28844a1220a77c0403e56106011947.tar.bz2 lombok-0ac3aedbca28844a1220a77c0403e56106011947.zip |
version naming and changelog update for edge release
-rw-r--r-- | doc/changelog.markdown | 3 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 0e15e7e2..7782f1fa 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,9 @@ Lombok Changelog ---------------- +### v0.12.1 "Edgy Guinea Pig" +* PLATFORM: Initial (not quite totally finished) JDK8 support, without affecting existing support for JDK6 and 7. [Issue #451](https://code.google.com/p/projectlombok/issues/detail?id=451). + ### v0.12.0 "Angry Butterfly" (July 16th, 2013) * FEATURE: javadoc on fields will now be copied to generated getters / setters / withers. There are ways to specify separate javadoc for the field, the setter, and the getter, and `@param` and `@return` are handled appropriately. Addresses feature request [Issue #59](https://code.google.com/p/projectlombok/issues/detail?id=59). [@Getter and @Setter documentation](http://projectlombok.org/features/GetterSetter.html). [@Wither documentation](http://projectlombok.org/features/experimental/Wither.html). * CHANGE: The desugaring of @Getter(lazy=true) is now less object creation intensive. Documentation has been updated to reflect what the new desugaring looks like. [@Getter(lazy=true) documentation](http://projectlombok.org/features/GetterLazy.html). diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index bd83c1f8..25c1b469 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -29,7 +29,8 @@ public class Version { // 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.12.1"; - private static final String RELEASE_NAME = "Angry Butterfy"; + private static final String RELEASE_NAME = "Edgy Guinea Pig"; +// private static final String RELEASE_NAME = "Angry Butterfly"; private Version() { //Prevent instantiation |