diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-04-05 14:22:40 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-04-05 14:22:40 +0200 |
commit | b6fb3c03fa35db3423ea4274f35d2c77859a3286 (patch) | |
tree | 4e34a00e9684baedba46fdf635e5382679c2188d /doc | |
parent | 2c93d336c1d694a286b53710cbeaa01339ba3f1c (diff) | |
download | lombok-b6fb3c03fa35db3423ea4274f35d2c77859a3286.tar.gz lombok-b6fb3c03fa35db3423ea4274f35d2c77859a3286.tar.bz2 lombok-b6fb3c03fa35db3423ea4274f35d2c77859a3286.zip |
[fieldNameConstants] code review, docs, tests, fixup.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 9e84afb8..51da4651 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,9 +3,11 @@ Lombok Changelog ### v1.16.21 "Edgy Guinea Pig" * v1.16.20 is the latest stable release of Project Lombok. +* FEATURE: `@FieldNameConstants` is an new feature that generates string constants for your field names. [Docs on @FieldNameConstants](https://projectlombok.org/features/experimental/FieldNameConstants). * PLATFORM: Fix for using lombok together with JDK9's new `module-info.java` feature. [Issue #985](https://github.com/rzwitserloot/lombok/issues/985) -* PLATFORM: Some initial work on supporting JDK10. -* BUGFIX: Potential fix for Netbeans < 9. [Issue #1555](https://github.com/rzwitserloot/lombok/issues/1555) +* PLATFORM: Some initial work on supporting JDK10 and JDK11. +* BUGFIX: Solved some issues in eclipse that resulted in error 'A save participant caused problems'. [Issue #879](https://github.com/rzwitserloot/lombok/issues/879) +* BUGFIX: Bugfix for Netbeans < 9. [Issue #1555](https://github.com/rzwitserloot/lombok/issues/1555) * PROMOTION: `var` has been promoted from experimental to the main package with no changes. The 'old' experimental one is still around but is deprecated, and is an alias for the new main package one. [var documentation](https://projectlombok.org/features/var.html). * OLD-CRUFT: `lombok.experimental.Builder` and `lombok.experimental.Value` are deprecated remnants of when these features were still in experimental. They are now removed entirely. If your project is dependent on an older version of lombok which still has those; fret not, lombok still processes these annotations. It just no longer includes them in the jar. |