From a9485b187844cad900bc43c0651406c51a7295c1 Mon Sep 17 00:00:00 2001 From: Adrien Hopkins Date: Wed, 28 Aug 2024 19:23:34 -0500 Subject: Bump version number to 1.0.0a1 --- README.org | 2 +- src/main/java/sevenUnits/ProgramInfo.java | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index 4e64591..cf8de11 100644 --- a/README.org +++ b/README.org @@ -1,4 +1,4 @@ -* 7Units Version 0.5.0 +* 7Units Version 1.0.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 9c23c49..573c5c7 100644 --- a/src/main/java/sevenUnits/ProgramInfo.java +++ b/src/main/java/sevenUnits/ProgramInfo.java @@ -25,15 +25,15 @@ import sevenUnits.utils.SemanticVersionNumber; * @since 2021-06-28 */ public final class ProgramInfo { - - /** The version number (0.5.0) */ + + /** The version number (1.0.0-alpha.1) */ public static final SemanticVersionNumber VERSION = SemanticVersionNumber - .stableVersion(0, 5, 0); - + .preRelease(1, 0, 0, "alpha", 1); + private ProgramInfo() { // this class is only for static variables, you shouldn't be able to // construct an instance throw new AssertionError(); } - + } -- cgit v1.2.3