diff options
Diffstat (limited to 'src/main/java/sevenUnits/ProgramInfo.java')
-rw-r--r-- | src/main/java/sevenUnits/ProgramInfo.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/sevenUnits/ProgramInfo.java b/src/main/java/sevenUnits/ProgramInfo.java index da66b4c..9c23c49 100644 --- a/src/main/java/sevenUnits/ProgramInfo.java +++ b/src/main/java/sevenUnits/ProgramInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (C) 2021-2023 Adrien Hopkins + * Copyright (C) 2021-2024 Adrien Hopkins * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -25,15 +25,15 @@ import sevenUnits.utils.SemanticVersionNumber; * @since 2021-06-28 */ public final class ProgramInfo { - - /** The version number (0.4.1) */ + + /** The version number (0.5.0) */ public static final SemanticVersionNumber VERSION = SemanticVersionNumber - .stableVersion(0, 4, 1); - + .stableVersion(0, 5, 0); + private ProgramInfo() { // this class is only for static variables, you shouldn't be able to // construct an instance throw new AssertionError(); } - + } |