Skip to content

Commit

Permalink
V1.1.0
Browse files Browse the repository at this point in the history
Version 1.1.0
  • Loading branch information
FalsePattern authored Dec 22, 2022
2 parents ad31e98 + c47cdf5 commit 73e38ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.falsepattern</groupId>
<artifactId>jfunge</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>

<properties>
<java.version>8</java.version>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/falsepattern/jfunge/Globals.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.falsepattern.jfunge;

public class Globals {
public static final String VERSION = "1.0.1";
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 comments on commit 73e38ee

Please sign in to comment.