Skip to content

Commit dc715da

Browse files
committed
pre-release version bump
1 parent 7e94041 commit dc715da

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,10 +1,11 @@
11
Lombok Changelog
22
----------------
33

4-
### v1.18.1 "Edgy Guinea Pig"
4+
### v1.18.2 (July 26th, 2018)
55
* BUGFIX: mapstruct + lombok in eclipse should hopefully work again. [Issue #1359](https://github.com/rzwitserloot/lombok/issues/1359) and [mapstruct issue #1159](https://github.com/mapstruct/mapstruct/issues/1159)
66
* BUGFIX: Equals and hashCode again exclude transient fields by default. [Issue #1724](https://github.com/rzwitserloot/lombok/issues/1724)
77
* BUGFIX: Eclipse 'organize imports' feature (either explicitly, or if automatically triggered on saving via 'save actions') would remove the import for `lombok.var`. [Issue #1783](https://github.com/rzwitserloot/lombok/issues/1783)
8+
* BUGFIX: Lombok and gradle v4.9 didn't work together; that's been fixed. [Issue #1716](https://github.com/rzwitserloot/lombok/issues/1716) and [gradle-apt-plugin issue #87](https://github.com/tbroyer/gradle-apt-plugin/issues/87)
89
* FEATURE: You can now make builders for type hierarchies, using the new (experimental) `@SuperBuilder` annotation. Thanks for the contribution, Jan Rieke. [`@SuperBuilder` documentation](https://projectlombok.org/features/experimental/SuperBuilder)
910
* FEATURE: `@NoArgsConstructor`, including forcing one with `lombok.config: lombok.noArgsConstructor.extraPrivate=true` now take any defaults set with `@Builder.Default` into account. [Issue #1347](https://github.com/rzwitserloot/lombok/issues/1347)
1011

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.18.1";
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.2";
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)