aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-09 14:20:03 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-09 14:20:03 +0200
commitc479920db17e36392fa69e386156c982fe60cc27 (patch)
treec15f282ee3bae60c80af61f6a42d56ebbd5e0bd0
parent1a5363cc5b3fe24eb259b082e94ced9fc37fa326 (diff)
downloadlombok-c479920db17e36392fa69e386156c982fe60cc27.tar.gz
lombok-c479920db17e36392fa69e386156c982fe60cc27.tar.bz2
lombok-c479920db17e36392fa69e386156c982fe60cc27.zip
post-release version bump (to be clear, the static constructor feature 2 commits before this is NOT in the 1.18.8 release; this post-release bump is slightly late).
-rw-r--r--doc/changelog.markdown3
-rw-r--r--src/core/lombok/core/Version.java6
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 09a33367..e0e3d49a 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,6 +1,9 @@
Lombok Changelog
----------------
+### v1.18.9 "Edgy Guinea Pig"
+* Nothing yet.
+
### v1.18.8 (May 7th, 2019)
* FEATURE: You can now configure `@FieldNameConstants` to `CONSTANT_CASE` the generated constants, using a `lombok.config` option. See the [FieldNameConstants documentation](https://projectlombok.org/features/experimental/FieldNameConstants). [Issue #2092](https://github.com/rzwitserloot/lombok/issues/2092).
* FEATURE: You can now suppress generation of the `builder` method when using `@Builder`; usually because you're only interested in the `toBuilder` method. As a convenience we won't emit warnings about missing `@Builder.Default` annotations when you do this. [Issue #2046](https://github.com/rzwitserloot/lombok/issues/2046)
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index e3d7368e..0a4f7e3d 100644
--- a/src/core/lombok/core/Version.java
+++ b/src/core/lombok/core/Version.java
@@ -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.8";
-// private static final String RELEASE_NAME = "Edgy Guinea Pig";
- private static final String RELEASE_NAME = "Envious Ferret";
+ private static final String VERSION = "1.18.9";
+ private static final String RELEASE_NAME = "Edgy Guinea Pig";
+// private static final String RELEASE_NAME = "Envious Ferret";
// Named version history:
// Angry Butterfly