aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 01:33:57 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-01 01:33:57 +0200
commitbf0499263b05e11fdd43886df3dc5663c8fee5f4 (patch)
tree6292ee0339692e5fee9c8231c11704ed39393606 /doc/changelog.markdown
parentac0eeacc699aa1427fab3fbc5c57fd6d6b183473 (diff)
downloadlombok-bf0499263b05e11fdd43886df3dc5663c8fee5f4.tar.gz
lombok-bf0499263b05e11fdd43886df3dc5663c8fee5f4.tar.bz2
lombok-bf0499263b05e11fdd43886df3dc5663c8fee5f4.zip
[issue #2092] Add an uppercase option to FieldNameConstants
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 614848cb..89ce9929 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,7 @@ Lombok Changelog
----------------
### v1.18.7 "Edgy Guinea Pig"
+* FEATURE: You can now configure `@FieldNameConstants` to `CONSTANT_CASE` the generated constants, using a `lombok.config` option. See the [FieldNameConstants documentation](https://projectlombok.org/features/experimental/FieldNameConstants). [Issue #2092](https://github.com/rzwitserloot/lombok/issues/2092).
* FEATURE: You can now suppress generation of the `builder` method when using `@Builder`; usually because you're only interested in the `toBuilder` method. As a convenience we won't emit warnings about missing `@Builder.Default` annotations when you do this. [Issue #2046](https://github.com/rzwitserloot/lombok/issues/2046)
* FEATURE: You can now change the access modifier of generated builder classes. [Issue #2083](https://github.com/rzwitserloot/lombok/issues/2083).
* FEATURE: When using `@NonNull`, or any other annotation that would result in a null-check, you can configure to generate an assert statement instead. [Issue #2078](https://github.com/rzwitserloot/lombok/issues/2078).