diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-05-29 00:28:00 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-05-29 00:28:00 +0200 |
commit | c39cf539279f4dbe2a63987376c8f7b80d892972 (patch) | |
tree | cd863df5ae03bc8564f6c9f779fc2e54736277e4 | |
parent | effa4e9474faf7e2faae89f55f8b3288bb92c69c (diff) | |
download | lombok-c39cf539279f4dbe2a63987376c8f7b80d892972.tar.gz lombok-c39cf539279f4dbe2a63987376c8f7b80d892972.tar.bz2 lombok-c39cf539279f4dbe2a63987376c8f7b80d892972.zip |
[release] post-release version bump
-rw-r--r-- | doc/changelog.markdown | 3 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index b0ba6f7b..2d726d9c 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,9 @@ Lombok Changelog ---------------- +### v1.16.23 "Edgy Guinea Pig" +* v1.16.22 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) diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 98bffa5d..dc0900f6 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -30,9 +30,9 @@ public class Version { // ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries). // Note: In 'X.Y.Z', if Z is odd, its a snapshot build built from the repository, so many different 0.10.3 versions can exist, for example. // Official builds always end in an even number. (Since 0.10.2). - private static final String VERSION = "1.16.22"; -// private static final String RELEASE_NAME = "Edgy Guinea Pig"; - private static final String RELEASE_NAME = "Envious Ferret"; + private static final String VERSION = "1.16.23"; + private static final String RELEASE_NAME = "Edgy Guinea Pig"; +// private static final String RELEASE_NAME = "Envious Ferret"; // Named version history: // Angry Butterfly |