Skip to content

Commit effa4e9

Browse files
committed
[release] pre-release version bump
1 parent d07ffaa commit effa4e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/changelog.markdown

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
Lombok Changelog
22
----------------
33

4-
### v1.16.21 "Edgy Guinea Pig"
5-
* v1.16.20 is the latest stable release of Project Lombok.
4+
### v1.16.22 "Envious Ferret" (May 29th, 2018)
65
* 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.
76
* 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)
87
* FEATURE: `@Getter` and `@Setter` also allow `onMethod` and `onParam` when put on a type. [Issue #1653](https://github.com/rzwitserloot/lombok/issues/1653)

src/core/lombok/core/Version.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,16 @@ public class Version {
3030
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
3131
// 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.
3232
// Official builds always end in an even number. (Since 0.10.2).
33-
private static final String VERSION = "1.16.21";
34-
private static final String RELEASE_NAME = "Edgy Guinea Pig";
35-
// private static final String RELEASE_NAME = "Dancing Elephant";
33+
private static final String VERSION = "1.16.22";
34+
// private static final String RELEASE_NAME = "Edgy Guinea Pig";
35+
private static final String RELEASE_NAME = "Envious Ferret";
3636

3737
// Named version history:
3838
// Angry Butterfly
3939
// Branching Cobra
4040
// Candid Duck
4141
// Dancing Elephant
42+
// Envious Ferret
4243

4344
private Version() {
4445
//Prevent instantiation

0 commit comments

Comments
 (0)