diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-09-15 22:25:13 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-09-15 22:25:13 +0200 |
commit | 3150bdcf471dc06ab653d5974abed7d9529007f8 (patch) | |
tree | c28908d7e09183e162aa51610f2f5819e78e518c | |
parent | 022d2f3da0a9a7ea0c83d4b0fc70d84709013462 (diff) | |
download | lombok-3150bdcf471dc06ab653d5974abed7d9529007f8.tar.gz lombok-3150bdcf471dc06ab653d5974abed7d9529007f8.tar.bz2 lombok-3150bdcf471dc06ab653d5974abed7d9529007f8.zip |
pre-release version bump
-rw-r--r-- | doc/changelog.markdown | 5 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index e95ed2f2..144bbe67 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,11 +1,10 @@ Lombok Changelog ---------------- -### v1.14.7 "Edgy Guinea Pig" -* PERFORMANCE: The configuration system typically hit the filesystem twice per read configuration key instead of hardly ever. +### v1.14.8 (September 15th, 2014) +* PERFORMANCE: The configuration system typically hit the filesystem twice per read configuration key instead of hardly ever. This is a continuation of [Issue #682](https://code.google.com/p/projectlombok/issues/detail?id=682). ### v1.14.6 (September 2nd, 2014) -* _**SPECIAL NOTE**: If you still notice significant slowdowns in eclipse, try adding: `-Dlombok.timeConfig` to your `eclipse.ini` (after the `-vmargs` line) and send us the timing report that will show up in your eclipse error log at [Issue #682](https://code.google.com/p/projectlombok/issues/detail?id=682). Then, to continue working with eclipse without the slowdowns, replace `-Dlombok.timeConfig` with `-Dlombok.disableConfig`. We believe this issue has already been fixed, but if not, please let us know!_ * BUGFIX: Usage of `val` would break starting with JDK8 release `1.8.0_20`. [Issue #731](https://code.google.com/p/projectlombok/issues/detail?id=731) * BUGFIX: Depending on your eclipse project setup, releases v1.14.0 through v1.14.4 could noticably slow down your eclipse. [Issue #682](https://code.google.com/p/projectlombok/issues/detail?id=682). diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index e1a2cce2..3c6dcbd0 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.14.7"; - private static final String RELEASE_NAME = "Edgy Guinea Pig"; -// private static final String RELEASE_NAME = "Branching Cobra"; + private static final String VERSION = "1.14.8"; +// private static final String RELEASE_NAME = "Edgy Guinea Pig"; + private static final String RELEASE_NAME = "Branching Cobra"; private Version() { //Prevent instantiation |