aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2020-12-10 23:59:42 +0100
committerGitHub <noreply@github.com>2020-12-10 23:59:42 +0100
commitb4b034af37c4fa780c8618126000b023a95030c3 (patch)
treee26f0a2807de4edda31bb177d3b048d7ee505172 /doc
parent2fcd0a2f5fd57a4eb4d9b0b3cf5a2da6b1d9a038 (diff)
parentb58eae2386d0e2c8749caddbfca1ca7f2b6d73cd (diff)
downloadlombok-b4b034af37c4fa780c8618126000b023a95030c3.tar.gz
lombok-b4b034af37c4fa780c8618126000b023a95030c3.tar.bz2
lombok-b4b034af37c4fa780c8618126000b023a95030c3.zip
Merge pull request #2676 from andrebrait/patch-1
Add missing PR number
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 6282f4b9..8fd5b293 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -16,7 +16,7 @@ Lombok Changelog
* 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)
* FEATURE: `@Jacksonized` on a `@Builder` or `@SuperBuilder` will configure [Jackson](https://github.com/FasterXML/jackson) to use this builder when deserializing. [Pull Request #2387](https://github.com/rzwitserloot/lombok/pull/2387) thanks to __@JanRieke__. [@Jacksonized documentation](https://projectlombok.org/features/experimental/Jacksonized).
* FEATURE: The checkerframework support has been updated; the relevant annotations were renamed in checkerframework's APIs, lombok now generates the annotations according to their current API names.
-* FEATURE: Add option to cache hashCode via `@EqualsAndHashCode(cacheStrategy = EqualsAndHashCode.CacheStrategy.LAZY)`. [Issue #784](https://github.com/rzwitserloot/lombok/issues/784) [Pull Request](https://github.com/rzwitserloot/lombok/pull/2513) thanks to __@andrebrait__.
+* FEATURE: Add option to cache hashCode via `@EqualsAndHashCode(cacheStrategy = EqualsAndHashCode.CacheStrategy.LAZY)`. [Issue #784](https://github.com/rzwitserloot/lombok/issues/784) [Pull Request #2513](https://github.com/rzwitserloot/lombok/pull/2513) thanks to __@andrebrait__.
* PLATFORM: Added support for compiling projects with OpenJ9 [Pull Request #2437](https://github.com/rzwitserloot/lombok/pull/2437)
* PLATFORM: Improved support for recent JVM/javac versions (14 and 15) and new language features.
* PERFORMANCE: Several performance improvements during parsing/compilation, both using javac and Eclipse. Thanks __@Rawi01__!