aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-05-29 00:13:23 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-05-29 00:13:57 +0200
commiteffa4e9474faf7e2faae89f55f8b3288bb92c69c (patch)
treed0262fa51ce3f72a18478ade36fee10c21c5864c /doc/changelog.markdown
parentd07ffaa17dfc2442caf8879a8025bef5e5d33c40 (diff)
downloadlombok-effa4e9474faf7e2faae89f55f8b3288bb92c69c.tar.gz
lombok-effa4e9474faf7e2faae89f55f8b3288bb92c69c.tar.bz2
lombok-effa4e9474faf7e2faae89f55f8b3288bb92c69c.zip
[release] pre-release version bump
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 94836936..b0ba6f7b 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,8 +1,7 @@
Lombok Changelog
----------------
-### v1.16.21 "Edgy Guinea Pig"
-* v1.16.20 is the latest stable release of Project Lombok.
+### v1.16.22 "Envious Ferret" (May 29th, 2018)
* FEATURE: Private no-args constructor for `@Data` and `@Value` to enable deserialization frameworks (like Jackson) to operate out-of-the-box. Use `lombok.noArgsConstructor.extraPrivate = false` to disable this behavior.
* FEATURE: Methods can now be marked for inclusion in `toString`, `equals`, and `hashCode` generation. There is a new mechanism to mark which fields (and now, methods) are to be included or excluded for the generation of these methods: mark the relevant member with for example `@ToString.Include` or `@EqualsAndHashCode.Exclude`. [ToString documentation](https://projectlombok.org/features/ToString) [EqualsAndHashCode documentation](https://projectlombok.org/features/EqualsAndHashCode)
* FEATURE: `@Getter` and `@Setter` also allow `onMethod` and `onParam` when put on a type. [Issue #1653](https://github.com/rzwitserloot/lombok/issues/1653)