diff options
author | cnuessgens <christian@nuessgens.com> | 2018-01-07 19:51:45 +0100 |
---|---|---|
committer | cnuessgens <christian@nuessgens.com> | 2018-01-07 19:51:45 +0100 |
commit | cdee2996514723dfbcf6ac177d82446acef260f3 (patch) | |
tree | 49b7fe5481eaeb02ba15f806a7d7725a6c6e5c14 /src | |
parent | c025ef0695a3678463bfa1487372427b00e3e887 (diff) | |
download | lombok-cdee2996514723dfbcf6ac177d82446acef260f3.tar.gz lombok-cdee2996514723dfbcf6ac177d82446acef260f3.tar.bz2 lombok-cdee2996514723dfbcf6ac177d82446acef260f3.zip |
remove issue-suffix from version-string
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lombok/core/Version.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index e776774b..18c78b04 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -30,7 +30,7 @@ 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.16.19-issue-879"; + private static final String VERSION = "1.16.19"; private static final String RELEASE_NAME = "Edgy Guinea Pig"; // private static final String RELEASE_NAME = "Dancing Elephant"; |