We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad31e98 + c47cdf5 commit 73e38eeCopy full SHA for 73e38ee
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>com.falsepattern</groupId>
8
<artifactId>jfunge</artifactId>
9
- <version>1.0.1</version>
+ <version>1.1.0</version>
10
11
<properties>
12
<java.version>8</java.version>
src/main/java/com/falsepattern/jfunge/Globals.java
@@ -1,7 +1,7 @@
1
package com.falsepattern.jfunge;
2
3
public class Globals {
4
- public static final String VERSION = "1.0.1";
5
- public static final int FUNGE_VERSION = 1 * 256 * 256 + 0 * 256 + 1;
+ public static final String VERSION = "1.1.0";
+ public static final int FUNGE_VERSION = 1 * 256 * 256 + 1 * 256 + 0;
public static final int HANDPRINT = 0x74_70_85_78; //"JFUN"
}
0 commit comments