diff options
author | Roel Spilker <r.spilker@gmail.com> | 2020-05-28 21:15:50 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-05-28 21:15:50 +0200 |
commit | ab028d70a4c178862d3792d7c0cd61710d330b4a (patch) | |
tree | d4395ccc35ae42cbe4e6de805197051b7888268a /doc | |
parent | cd0af7a6370d7bf65a15bde53a78338522e53908 (diff) | |
download | lombok-ab028d70a4c178862d3792d7c0cd61710d330b4a.tar.gz lombok-ab028d70a4c178862d3792d7c0cd61710d330b4a.tar.bz2 lombok-ab028d70a4c178862d3792d7c0cd61710d330b4a.zip |
add OpenJ9 fix to changelog
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index bfaf8a4a..063945be 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,6 +2,7 @@ Lombok Changelog ---------------- ### v1.18.13 "Edgy Guinea Pig" +* PLATFORM: Added support for compiling projects with OpenJ9 [Pull Request #2437](https://github.com/rzwitserloot/lombok/pull/2437) * BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstruct-binding. This solves compiling modules with lombok (and mapstruct). * FEATURE: Similar to `@Builder`, you can now configure a `@SuperBuilder`'s 'setter' prefixes via `@SuperBuilder(setterPrefix = "set")` for example. We still discourage doing this. [Pull Request #2357](https://github.com/rzwitserloot/lombok/pull/2357). * FEATURE: If using `@Synchronized("lockVar")`, if `lockVar` is referring to a static field, the code lombok generates no longer causes a warning about accessing a static entity incorrectly. [Issue #678](https://github.com/rzwitserloot/lombok/issues/678) |