From 9c37ac9f81d92d567f286b741805783fb34a4586 Mon Sep 17 00:00:00 2001 From: FalsePattern <30945458+FalsePattern@users.noreply.github.com> Date: Sat, 10 Sep 2022 15:16:57 +0200 Subject: [PATCH] also bump the ver in the globals --- src/main/java/com/falsepattern/jfunge/Globals.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/falsepattern/jfunge/Globals.java b/src/main/java/com/falsepattern/jfunge/Globals.java index 330bb54..ad26242 100644 --- a/src/main/java/com/falsepattern/jfunge/Globals.java +++ b/src/main/java/com/falsepattern/jfunge/Globals.java @@ -1,8 +1,8 @@ package com.falsepattern.jfunge; public class Globals { - public static final String VERSION = "1.0.0"; - public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 0; + public static final String VERSION = "1.0.1"; + public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 1; public static final int HANDPRINT = 0xfa15e9a7; //"falsepat" public static final String LICENSE = "JFunge - A standard-conforming Befunge-98 and Trefunge-98 interpreter\n" + "Copyright (C) 2022 FalsePattern\n" + "\n" + "This program is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation, either version 3 of the License, or\n" + "(at your option) any later version.\n" + "\n" + "This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + "GNU General Public License for more details.\n" + "\n" + "You should have received a copy of the GNU General Public License\n" + "along with this program. If not, see ."; }