diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-15 22:31:59 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2014-01-15 22:31:59 +0100 |
commit | 560552ddb3c7be4b92c7479098c40886aa3bb8aa (patch) | |
tree | 1b25aaa88a60e09915f04041af8022d33a17c0b4 | |
parent | 6363cac07d849e9e4619a2419ac802171e3a525a (diff) | |
download | lombok-560552ddb3c7be4b92c7479098c40886aa3bb8aa.tar.gz lombok-560552ddb3c7be4b92c7479098c40886aa3bb8aa.tar.bz2 lombok-560552ddb3c7be4b92c7479098c40886aa3bb8aa.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 83971f25..6d01b859 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,9 @@ Lombok Changelog ---------------- +### v1.12.5 "Edgy Guinea Pig" +* Edge placeholder + ### 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) diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 674baaf4..6e68f035 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.4"; -// private static final String RELEASE_NAME = "Edgy Guinea Pig"; - private static final String RELEASE_NAME = "Angry Butterfly"; + private static final String VERSION = "1.12.5"; + private static final String RELEASE_NAME = "Edgy Guinea Pig"; +// private static final String RELEASE_NAME = "Angry Butterfly"; private Version() { //Prevent instantiation |