Skip to content

Commit

Permalink
1.5.0-pre1
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed Mar 3, 2023
1 parent e473947 commit 06847ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ plugins {
signing
}

version = "1.4.3-pre1"
version = "1.5.0-pre1"
group = "gg.skytils"

repositories {
Expand Down Expand Up @@ -174,7 +174,7 @@ tasks {
doLast {
MessageDigest.getInstance("SHA-256").digest(archiveFile.get().asFile.readBytes())
.let {
println("SHA-256: " + it.joinToString(separator = "") { "%02x".format(it) }.toUpperCase())
println("SHA-256: " + it.joinToString(separator = "") { "%02x".format(it) }.uppercase())
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gg/skytils/skytilsmod/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Reference {
public static String dataUrl = "https://data.skytils.gg/";
public static final String MOD_ID = "skytils";
public static final String MOD_NAME = "Skytils";
public static final String VERSION = "1.4.3-pre1";
public static final String VERSION = "1.5.0-pre1";

public static final int apiVersion = 2;
}

0 comments on commit 06847ea

Please sign in to comment.