Skip to content

Commit 52d0786

Browse files
committed
[versioning] pre-release version bump
1 parent d653514 commit 52d0786

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/changelog.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Lombok Changelog
22
----------------
33

4-
### v1.18.21 "Edgy Guinea Pig"
4+
### v1.18.22 (October 6th, 2021)
55
* PLATFORM: JDK17 support added. [Issue #2898](https://github.com/projectlombok/lombok/issues/2898).
66
* FEATURE: Added the `@StandardException` feature. [Pull Request #2702](https://github.com/projectlombok/lombok/pull/2702).
77
* IMPROBABLE BREAKING CHANGE: If the underlying compiler and `--release` / `--source` option is 10 or higher, lombok's `val` is now replaced by `final var`. That means compound declarations such as `val x = 10, y = 12;` now fail (lombok's old `val` implementation supported it, javac's `var` does not), but IDE support in particular is more reliable. We decided it was worth the tradeoff.

src/core/lombok/core/Version.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ 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.18.21";
34-
private static final String RELEASE_NAME = "Edgy Guinea Pig";
35-
// private static final String RELEASE_NAME = "Envious Ferret";
33+
private static final String VERSION = "1.18.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

0 commit comments

Comments
 (0)