diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-09-15 22:32:44 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-09-15 22:32:44 +0200 |
commit | 4788403d749c293af3a9d1b9dd3f83da6dbe0fe6 (patch) | |
tree | 0e4072d4da93c2ab6f0d83ac9ee177f68a503ab0 | |
parent | 3150bdcf471dc06ab653d5974abed7d9529007f8 (diff) | |
download | lombok-4788403d749c293af3a9d1b9dd3f83da6dbe0fe6.tar.gz lombok-4788403d749c293af3a9d1b9dd3f83da6dbe0fe6.tar.bz2 lombok-4788403d749c293af3a9d1b9dd3f83da6dbe0fe6.zip |
post-release version bump
-rw-r--r-- | doc/changelog.markdown | 3 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 144bbe67..72b6e24c 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,9 @@ Lombok Changelog ---------------- +### v1.14.9 "Edge Guinea Pig" +* edge + ### 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). diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 3c6dcbd0..9f810525 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.8"; -// private static final String RELEASE_NAME = "Edgy Guinea Pig"; - private static final String RELEASE_NAME = "Branching Cobra"; + private static final String VERSION = "1.14.9"; + private static final String RELEASE_NAME = "Edgy Guinea Pig"; +// private static final String RELEASE_NAME = "Branching Cobra"; private Version() { //Prevent instantiation |