Skip to content

Commit

Permalink
[versioning] pre-release version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rzwitserloot committed Apr 1, 2021
1 parent 0fb3a68 commit dda76a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions doc/changelog.markdown
@@ -1,12 +1,13 @@
Lombok Changelog
----------------

### v1.18.19 "Edgy Guinea Pig"
* PLATFORM: JDK16 support added. [Issue #2681](https://github.com/mplushnikov/lombok-intellij-plugin/issues/2681).
### v1.18.20 (April 2nd, 2021)
* PLATFORM: JDK16 support added. [Issue #2681](https://github.com/rzwitserloot/lombok/issues/2681).
* PLATFORM: All lombok features updated to act in a sane fashion with JDK16's _record_ feature. In particular, you can annotate record components with `@NonNull` to have lombok add null checks to your compact constructor (which will be created if need be).
* BUGFIX: Trying to use a lambda expression as parameter to an `@ExtensionMethod` did not work. [Issue #2741](https://github.com/rzwitserloot/lombok/issues/2741). (by __@Rawi01__).
* BUGFIX: `@SuperBuilder` with an existing constructor caused issues in eclipse. [Issue #2704](https://github.com/rzwitserloot/lombok/issues/2704). (by [@JanRieke](https://github.com/rzwitserloot/lombok/pull/2770)).
* BUGFIX: Using `@SuperBuilder` with a handwritten builder class caused issues. [Issue #2701](https://github.com/rzwitserloot/lombok/issues/2701). (by [@JanRieke](https://github.com/rzwitserloot/lombok/pull/2772)).
* BUGFIX: Lombok interacts properly with the new save actions in eclipse 2021-03.
* POTENTIAL BUGFIX: lombok + errorprone could cause `IllegalArgumentException` if using the `MissingSummary` bug pattern. [Issue #2730](https://github.com/rzwitserloot/lombok/issues/2730).

### v1.18.18 (January 28th, 2021)
Expand Down
2 changes: 1 addition & 1 deletion src/core/lombok/core/Main.java
Expand Up @@ -145,7 +145,7 @@ public void printHelp(String message, PrintStream out) {
out.println("------------------------------");
}
out.println("projectlombok.org " + Version.getFullVersion());
out.println("Copyright (C) 2009-2018 The Project Lombok Authors.");
out.println("Copyright (C) 2009-2021 The Project Lombok Authors.");
out.println("Run 'lombok license' to see the lombok license agreement.");
out.println();
out.println("Run lombok without any parameters to start the graphical installer.");
Expand Down
6 changes: 3 additions & 3 deletions src/core/lombok/core/Version.java
Expand Up @@ -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.18.19";
private static final String RELEASE_NAME = "Edgy Guinea Pig";
// private static final String RELEASE_NAME = "Envious Ferret";
private static final String VERSION = "1.18.20";
// private static final String RELEASE_NAME = "Edgy Guinea Pig";
private static final String RELEASE_NAME = "Envious Ferret";

// Named version history:
// Angry Butterfly
Expand Down

0 comments on commit dda76a7

Please sign in to comment.