diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-15 22:11:13 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-15 22:11:13 +0100 |
commit | 6363cac07d849e9e4619a2419ac802171e3a525a (patch) | |
tree | 5d8bcd929c5a17c64eae8e20f7024c79c286e78c | |
parent | 68e7a11f500970aac1589193116b6f06791d8167 (diff) | |
download | lombok-6363cac07d849e9e4619a2419ac802171e3a525a.tar.gz lombok-6363cac07d849e9e4619a2419ac802171e3a525a.tar.bz2 lombok-6363cac07d849e9e4619a2419ac802171e3a525a.zip |
pre-release version bump
-rw-r--r-- | doc/changelog.markdown | 2 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index e681056a..83971f25 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,7 +1,7 @@ Lombok Changelog ---------------- -### v1.12.3 "Edgy Guinea Pig" +### v1.12.4 (January 15th, 2014) * BUGFIX: v1.12.2's delombok turns all operator+assignments into just assignment. Fixed. [Issue #598](https://code.google.com/p/projectlombok/issues/detail?id=598) * BUGFIX: {Netbeans} v1.12.2 doesn't well with netbeans. [Issue #591](https://code.google.com/p/projectlombok/issues/detail?id=591) * ENHANCEMENT: Delombok now supports varied options for how it formats the resulting source files. This includes scanning the source for things like the preferred indent. Use option `--format-help` for more information. [Issue #608](http://code.google.com/p/projectlombok/issues/detail?id=608) diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index bf2e199b..674baaf4 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -28,9 +28,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.12.3"; - private static final String RELEASE_NAME = "Edgy Guinea Pig"; -// private static final String RELEASE_NAME = "Angry Butterfly"; + private static final String VERSION = "1.12.4"; +// private static final String RELEASE_NAME = "Edgy Guinea Pig"; + private static final String RELEASE_NAME = "Angry Butterfly"; private Version() { //Prevent instantiation |