diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/sevenUnits/ProgramInfo.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/sevenUnits/ProgramInfo.java b/src/main/java/sevenUnits/ProgramInfo.java index dc8ed09..d94347b 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 @@ -26,9 +26,9 @@ import sevenUnits.utils.SemanticVersionNumber; */ public final class ProgramInfo { - /** The version number (0.5.0-alpha.1) */ + /** The version number (0.5.0-alpha.2) */ public static final SemanticVersionNumber VERSION = SemanticVersionNumber - .preRelease(0, 5, 0, "alpha", 1); + .preRelease(0, 5, 0, "alpha", 2); private ProgramInfo() { // this class is only for static variables, you shouldn't be able to |