aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2017-12-11 22:59:17 +0100
committerRoel Spilker <r.spilker@gmail.com>2017-12-11 22:59:17 +0100
commite04e1771e112f6e968c85fcc02be4efec6fc0b70 (patch)
tree808a3844121b16a995150cce945b0a4fcc3c256f /doc
parent50cb79b9ed02a1e87bd223a36c512a6857294094 (diff)
downloadlombok-e04e1771e112f6e968c85fcc02be4efec6fc0b70.tar.gz
lombok-e04e1771e112f6e968c85fcc02be4efec6fc0b70.tar.bz2
lombok-e04e1771e112f6e968c85fcc02be4efec6fc0b70.zip
document deprecation of the config key lombok.addGeneratedAnnotation. Fixes #1532
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 642034ca..2672bbc6 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -29,6 +29,7 @@ Lombok Changelog
* PLATFORM: Lombok can now be used together with other annotation processors that are looking for lombok-generated methods, but only if lombok is the first annotation processor executed. The most commonly used annotation processor affected by this change is [MapStruct](http://mapstruct.org/); we've worked with the mapstruct team specifically to allow any order. Other annotation processors might follow the framework we've built to make this possible; point the authors of any such processor to us and we'll get it sorted [MapStruct issue #510](https://github.com/mapstruct/mapstruct/issues/510) [Lombok issue #973](https://github.com/rzwitserloot/lombok/issues/973)
* PLATFORM: Eclipse: Refactor script 'rename field' when lombok has also generated getters and/or setters for this field is nicer now [Issue #210](https://github.com/rzwitserloot/lombok/issues/210)
* BUGFIX: Something you never encountered. [Issue #1274](https://github.com/rzwitserloot/lombok/issues/1274)
+* DEPRECATION: The configuration key `lombok.addGeneratedAnnotation` is now deprecated, use `lombok.addJavaxGeneratedAnnotation` instead.
### v1.16.12 (December 5th, 2016)
* FEATURE: `var` is the mutable sister of `val`. For now experimental, and opt-in using `ALLOW` in the flagUsage configuration key. Thanks for the contribution, Bulgakov Alexander.