Skip to content

Commit 9c37ac9

Browse files
committed
also bump the ver in the globals
1 parent 2a7e71a commit 9c37ac9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.falsepattern.jfunge;
22

33
public class Globals {
4-
public static final String VERSION = "1.0.0";
5-
public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 0;
4+
public static final String VERSION = "1.0.1";
5+
public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 1;
66
public static final int HANDPRINT = 0xfa15e9a7; //"falsepat"
77
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 <https://www.gnu.org/licenses/>.";
88
}

0 commit comments

Comments
 (0)