Skip to content

Commit 2c5395d

Browse files
committed
pre-release version bump
1 parent 21b415d commit 2c5395d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

doc/changelog.markdown

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

4-
### v1.16.23 "Edgy Guinea Pig"
4+
### v1.18.0 (June 5th, 2018)
55
* v1.16.22 is the latest stable release of Project Lombok.
66
* BREAKING CHANGE: The in 1.16.22 introduced configuration key `lombok.noArgsConstructor.extraPrivate` is now `false` by default. [Issue #1708](https://github.com/rzwitserloot/lombok/issues/1708)
77
* BUGFIX: Do not generate a private no-args constructor if that breaks the code. [Issue #1703](https://github.com/rzwitserloot/lombok/issues/1703), [Issue #1704](https://github.com/rzwitserloot/lombok/issues/1704), [Issue #1712](https://github.com/rzwitserloot/lombok/issues/1712)
88
* BUGFIX: Using boolean parameters in lombok annotations would fail. [Issue #1709](https://github.com/rzwitserloot/lombok/issues/1709)
99
* BUGFIX: Delombok would give an error message. [Issue #1705](https://github.com/rzwitserloot/lombok/issues/1705)
10+
* BUGFIX: Eclipse java10 var support didn't work if lombok was installed in your eclipse. [Issue #1676](https://github.com/rzwitserloot/lombok/issues/1676)
1011
* FEATURE: Google's [Flogger (a.k.a. FluentLogger)](https://google.github.io/flogger/) is now available via `@Flogger`. [Issue #1697](https://github.com/rzwitserloot/lombok/issues/1697)
1112
* FEATURE: `@FieldNameConstants` has been extended to support prefixes and suffixes. By default, the generated constants are prefixed with `FIELD_`. [Docs on @FieldNameConstants](https://projectlombok.org/features/experimental/FieldNameConstants).
1213

src/core/lombok/core/Version.java

+3-3
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.16.23";
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.0";
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)