From 732d3db79a781b30e6763167ad1baf05ffb9f125 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 25 Mar 2019 20:41:27 +0100 Subject: [docs] we had 2 references to v2.0.0; in the end that turned out to simply be v1.16.20. --- doc/changelog.markdown | 2 +- website/templates/features/configuration.html | 2 +- website/templates/features/var.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 26ad3dcb..17326a58 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -32,7 +32,6 @@ Lombok Changelog * BUGFIX: Fix NetBeans compile on save. [Issue #1770](https://github.com/rzwitserloot/lombok/issues/1770) * BUGFIX: If you manually write your builder class so you can add a few methods of your own, and those methods refer to generated methods, you'd usually run into various bizarre error messages, but only on JDK9/10/11. This one is hard to describe, but we fixed it. [Issue #1907](https://github.com/rzwitserloot/lombok/issues/1907) - ### v1.18.2 (July 26th, 2018) * BUGFIX: mapstruct + lombok in eclipse should hopefully work again. [Issue #1359](https://github.com/rzwitserloot/lombok/issues/1359) and [mapstruct issue #1159](https://github.com/mapstruct/mapstruct/issues/1159) * BUGFIX: Equals and hashCode again exclude transient fields by default. [Issue #1724](https://github.com/rzwitserloot/lombok/issues/1724) @@ -40,6 +39,7 @@ Lombok Changelog * BUGFIX: Lombok and gradle v4.9 didn't work together; that's been fixed. [Issue #1716](https://github.com/rzwitserloot/lombok/issues/1716) and [gradle-apt-plugin issue #87](https://github.com/tbroyer/gradle-apt-plugin/issues/87) * FEATURE: You can now make builders for type hierarchies, using the new (experimental) `@SuperBuilder` annotation. Thanks for the contribution, Jan Rieke. [`@SuperBuilder` documentation](https://projectlombok.org/features/experimental/SuperBuilder) * FEATURE: `@NoArgsConstructor`, including forcing one with `lombok.config: lombok.noArgsConstructor.extraPrivate=true` now take any defaults set with `@Builder.Default` into account. [Issue #1347](https://github.com/rzwitserloot/lombok/issues/1347) + ### v1.18.0 (June 5th, 2018) * BREAKING CHANGE: The in 1.16.22 introduced configuration key `lombok.noArgsConstructor.extraPrivate` is now `false` by default. [Issue #1708](https://github.com/rzwitserloot/lombok/issues/1708) * BUGFIX: Do not generate a private no-args constructor if that breaks the code. [Issue #1703](https://github.com/rzwitserloot/lombok/issues/1703), [Issue #1704](https://github.com/rzwitserloot/lombok/issues/1704), [Issue #1712](https://github.com/rzwitserloot/lombok/issues/1712) diff --git a/website/templates/features/configuration.html b/website/templates/features/configuration.html index 09cd46c2..7a15f252 100644 --- a/website/templates/features/configuration.html +++ b/website/templates/features/configuration.html @@ -84,7 +84,7 @@ lombok.addJavaxGeneratedAnnotation = true We advise against this; JDK9 breaks this annotation, and it's unlikely to ever get fixed.
- NB: Until Lombok v2.0.0, this setting defaulted to true. + NB: Until Lombok v1.16.20, this setting defaulted to true.

Lombok can be configured to add @lombok.Generated annotations to all generated nodes where possible; useful for JaCoCo (which has built in support), or other style checkers and code coverage tools: diff --git a/website/templates/features/var.html b/website/templates/features/var.html index 60e24914..bf28752f 100644 --- a/website/templates/features/var.html +++ b/website/templates/features/var.html @@ -3,7 +3,7 @@ <@f.scaffold title="var" logline="Mutably! Hassle-free local variables."> <@f.history>

-- cgit