aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Brait <andrebrait@gmail.com>2020-12-10 18:01:05 +0100
committerGitHub <noreply@github.com>2020-12-10 18:01:05 +0100
commitb58eae2386d0e2c8749caddbfca1ca7f2b6d73cd (patch)
treee26f0a2807de4edda31bb177d3b048d7ee505172
parent2fcd0a2f5fd57a4eb4d9b0b3cf5a2da6b1d9a038 (diff)
downloadlombok-b58eae2386d0e2c8749caddbfca1ca7f2b6d73cd.tar.gz
lombok-b58eae2386d0e2c8749caddbfca1ca7f2b6d73cd.tar.bz2
lombok-b58eae2386d0e2c8749caddbfca1ca7f2b6d73cd.zip
Add missing PR number
-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__!