aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2017-01-20 00:42:09 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-01-20 00:42:09 +0100
commit5f02accc064cc05c822c7c93c6b972b1ca387b4f (patch)
tree61f59237d94670bb1d09e1a90c0b8fc155837c8c
parentce9fa7fb06fda7c459e381022f38564c31b41744 (diff)
downloadlombok-5f02accc064cc05c822c7c93c6b972b1ca387b4f.tar.gz
lombok-5f02accc064cc05c822c7c93c6b972b1ca387b4f.tar.bz2
lombok-5f02accc064cc05c822c7c93c6b972b1ca387b4f.zip
Updated changelog to reflect the last 2 updates
-rw-r--r--doc/changelog.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 0c731776..f29da540 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -4,6 +4,8 @@ Lombok Changelog
### v1.16.13 "Edgy Guinea Pig"
* v1.16.12 is the latest stable release of Project Lombok.
* FEATURE: Generated classes, methods and fields are now also annotated with `@lombok.Generated` [Issue #1014](https://github.com/rzwitserloot/lombok/issues/1014)
+* 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).
### 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.