aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-05-27 20:54:06 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-05-27 20:54:06 +0200
commit122481eebffddeb0d0bb33b6e6fd50ce1ce43df7 (patch)
tree9ad6f95653fab4667073eadfe363e54dd3fe3bdb /doc/changelog.markdown
parent713822db9894cf99184aff57b3387f99846aa870 (diff)
downloadlombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.tar.gz
lombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.tar.bz2
lombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.zip
pre-release version bump
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 058a478a..6a42449b 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,7 +1,7 @@
Lombok Changelog
----------------
-### v1.12.7 "Edgy Guinea Pig"
+### v1.14.0 "Branching Cobra" (May 27th, 2014)
* FEATURE: You can now configure aspects of lombok project wide (or even workspace wide, or just for a single package) via the [configuration system](http://projectlombok.org/features/configuration.html). You can configure many things; run `java -jar lombok.jar config -gv` for the complete list.
* DEPRECATION: `@Delegate` has been moved to `lombok.experimental.Delegate`, and corner cases such as recursive delegation (delegating a type that itself has fields or methods annotated with `@Delegate`) are now error conditions. See the [feature documentation](http://projectlombok.org/features/experimental/Delegate.html) for more information.
* FEATURE: It is now possible to put annotations, such as `@Nullable`, on the one parameter of generated `equals()` methods by specifying the `onParam=` option on `@EqualsAndHashCode`, similar to how that feature already exists for `@Setter`. [Issue #674](https://code.google.com/p/projectlombok/issues/detail?id=674)