aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-06-25 00:29:57 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-06-25 00:29:57 +0200
commitfb32de51afaef2e2a3135b7230f47add005bae69 (patch)
tree31b04aa6af733cd707e70daabb87618dbdddd6c4 /doc
parentc3e4eb4f745b9f11b07f4a2c48273e7dfdeb7f69 (diff)
downloadlombok-fb32de51afaef2e2a3135b7230f47add005bae69.tar.gz
lombok-fb32de51afaef2e2a3135b7230f47add005bae69.tar.bz2
lombok-fb32de51afaef2e2a3135b7230f47add005bae69.zip
And now the changelogs are also updated to reflect that Value has been promoted. Racking up the commits here...
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 95ee5764..e922f8c9 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v0.11.9 (Edgy Guinea Pig)
+* PROMOTION: `@Value` has been promoted from experimental to the main package with no changes. The 'old' experimental one is still around but is deprecated, and is an alias for the new main package one. [@Value documentation](http://projectlombok.org/features/Value.html).
* FEATURE: {Experimental} `@Builder` support. One of our earliest feature request issues, [Issue #16](https://code.google.com/p/projectlombok/issues/detail?id=16), has finally been addressed. [@Builder documentation](http://projectlombok.org/features/experimental/Builder.html).
* FEATURE: `@NonNull` on a method or constructor parameter now generates a null-check statement at the start of your method. This nullcheck will throw a `NullPointerException` with the name of the parameter as the message. [Issue #514](https://code.google.com/p/projectlombok/issues/detail?id=514)
* BUGFIX: Usage of `Lombok.sneakyThrow()` or `@SneakyThrows` would sometimes result in invalid classes (classes which fail with `VerifyError`). [Issue #470](https://code.google.com/p/projectlombok/issues/detail?id=470)