aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-09-10 00:09:55 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-09-10 00:09:55 +0200
commit0ac3aedbca28844a1220a77c0403e56106011947 (patch)
treee1554c958528617048f2276235316ca01e233204 /doc/changelog.markdown
parent52d4c81a590f790de057653e7ffd091b6706ee34 (diff)
downloadlombok-0ac3aedbca28844a1220a77c0403e56106011947.tar.gz
lombok-0ac3aedbca28844a1220a77c0403e56106011947.tar.bz2
lombok-0ac3aedbca28844a1220a77c0403e56106011947.zip
version naming and changelog update for edge release
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown3
1 files changed, 3 insertions, 0 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).