diff options
-rw-r--r-- | README.org | 2 | ||||
-rw-r--r-- | src/main/java/sevenUnits/ProgramInfo.java | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -* 7Units Version 0.4.1 +* 7Units Version 0.5.0-alpha.1 (this project uses Semantic Versioning) ** What is it? This is a unit converter, which allows you to convert between different units, and includes a GUI which can read unit data from a file (using some unit math) and convert between units that you type in, and has a unit and prefix viewer to check the units that have been loaded in. diff --git a/src/main/java/sevenUnits/ProgramInfo.java b/src/main/java/sevenUnits/ProgramInfo.java index da66b4c..dc8ed09 100644 --- a/src/main/java/sevenUnits/ProgramInfo.java +++ b/src/main/java/sevenUnits/ProgramInfo.java @@ -26,9 +26,9 @@ import sevenUnits.utils.SemanticVersionNumber; */ public final class ProgramInfo { - /** The version number (0.4.1) */ + /** The version number (0.5.0-alpha.1) */ public static final SemanticVersionNumber VERSION = SemanticVersionNumber - .stableVersion(0, 4, 1); + .preRelease(0, 5, 0, "alpha", 1); private ProgramInfo() { // this class is only for static variables, you shouldn't be able to |