Woopsie, update VERSION because of this :(
authorNiki Roo <niki@nikiroo.be>
Mon, 27 Feb 2017 07:14:07 +0000 (08:14 +0100)
committerNiki Roo <niki@nikiroo.be>
Mon, 27 Feb 2017 07:14:07 +0000 (08:14 +0100)
VERSION
changelog
src/be/nikiroo/utils/Version.java

diff --git a/VERSION b/VERSION
index 3a3cd8cc8b079cb410a465d2925b9cbd703115cb..1892b926767774e9ba91f1e584fa71b4c56abb69 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.3.1
+1.3.2
index 02cb917e49246eb029452e019d5bc5760dce805a..b5e1d80737b1d85a591fd56fa33b5b311fc41f1a 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,4 +1,4 @@
-Version 1.3.1
+Version 1.3.2
 -------------
 
 New Version class
index 550c5e9dfc156f2e11b30b9d461955ee3d6e6ee3..a8ec3f5b4d1fd899f8056b2b4033f1a4c234ded8 100644 (file)
@@ -112,7 +112,7 @@ public class Version {
         * @return the {@link Version} of the program, or an empty {@link Version}
         *         (does not return NULL)
         */
-       public static String getCurrentVersion() {
+       public static Version getCurrentVersion() {
                String version = null;
 
                InputStream in = IOUtils.openResource("VERSION");
@@ -127,7 +127,7 @@ public class Version {
                        }
                }
 
-               return version;
+               return new Version(version);
        }
 
        /**