aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-09-16 02:12:05 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-09-16 02:12:05 +0200
commita7b625652351c290d3bf7cf13106d9bb8861e012 (patch)
treed0854d3ba033e856fd315178b0e409a2dbcd2ac4
parentd09d995a8ecbd15428eac92150b1d7b55a525d2c (diff)
downloadlombok-a7b625652351c290d3bf7cf13106d9bb8861e012.tar.gz
lombok-a7b625652351c290d3bf7cf13106d9bb8861e012.tar.bz2
lombok-a7b625652351c290d3bf7cf13106d9bb8861e012.zip
[changelog] documenting previous commit.
-rw-r--r--doc/changelog.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 973d86ea..9f240033 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,7 +2,8 @@ Lombok Changelog
----------------
### v1.18.21 "Edgy Guinea Pig"
-* Added the `@StandardException` feature. [Pull Request #2702](https://github.com/projectlombok/lombok/pull/2702).
+* PLATFORM: JDK17 support added. [Issue #2898](https://github.com/projectlombok/lombok/issues/2898).
+* FEATURE: Added the `@StandardException` feature. [Pull Request #2702](https://github.com/projectlombok/lombok/pull/2702).
* IMPROBABLE BREAKING CHANGE: If the underlying compiler and `--release` / `--source` option is 10 or higher, lombok's `val` is now replaced by `final var`. That means compound declarations such as `val x = 10, y = 12;` now fail (lombok's old `val` implementation supported it, javac's `var` does not), but IDE support in particular is more reliable. We decided it was worth the tradeoff.
### v1.18.20 (April 2nd, 2021)