diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-03-25 20:41:27 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-03-25 20:41:27 +0100 |
commit | 732d3db79a781b30e6763167ad1baf05ffb9f125 (patch) | |
tree | 2ff8b5baadbbd42671f3f413f3bd394c5caf17ce /doc | |
parent | f8857fdffec01b15a67ca6aad60a1f614fa278e2 (diff) | |
download | lombok-732d3db79a781b30e6763167ad1baf05ffb9f125.tar.gz lombok-732d3db79a781b30e6763167ad1baf05ffb9f125.tar.bz2 lombok-732d3db79a781b30e6763167ad1baf05ffb9f125.zip |
[docs] we had 2 references to v2.0.0; in the end that turned out to simply be v1.16.20.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 2 |
1 files changed, 1 insertions, 1 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) |