aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2017-02-07 14:56:47 +0100
committerRoel Spilker <r.spilker@gmail.com>2017-02-07 14:56:47 +0100
commitca2966f735416b62b1906edb22e68bad3963dc5e (patch)
tree8f8c66ce05e15156948d8b2e916e14af57cceef6 /doc
parent94d9755be4843620e1191dc62ae3fc539856aa45 (diff)
downloadlombok-ca2966f735416b62b1906edb22e68bad3963dc5e.tar.gz
lombok-ca2966f735416b62b1906edb22e68bad3963dc5e.tar.bz2
lombok-ca2966f735416b62b1906edb22e68bad3963dc5e.zip
Display changelog in installer
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index f29da540..cc038fa9 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -4,8 +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).
+* 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.