Skip to content

Commit

Permalink
chore: updated version to 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Chafficui committed Oct 31, 2022
1 parent 84652e0 commit 93b64d2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.chafficplugins</groupId>
<artifactId>MiningLevels</artifactId>
<version>1.2.7</version>
<version>1.2.8</version>
<packaging>jar</packaging>

<name>MiningLevels</name>
Expand Down Expand Up @@ -82,13 +82,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<version>5.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.Chafficui</groupId>
<artifactId>CrucialAPI</artifactId>
<version>2.1.5</version>
<version>2.1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public void onEnable() {
// Plugin startup logic
try {
if (!Server.checkCompatibility("1.19", "1.18", "1.17", "1.16", "1.15")) {
error("Unsupported server version, there may be some issues with this version. Please use a supported version.");
error("This is NOT a bug. Do NOT report this!");
warn("Unsupported server version, there may be some issues with this version. Please use a supported version.");
warn("This is NOT a bug. Do NOT report this!");
}

if(Crucial.connect()) {
Expand Down Expand Up @@ -157,4 +157,8 @@ public void log(String message) {
public void error(String message) {
logger.severe(message);
}

public void warn(String message) {
logger.warning(message);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class ConfigStrings {
public final static int SPIGOT_ID = 100886;
public final static int BSTATS_ID = 14709;
public final static String CRUCIAL_API_VERSION = "2.1.6";
public final static String CRUCIAL_API_VERSION = "2.1.7";
public final static String LOCALIZED_IDENTIFIER = "mininglevels";
public static final String PERMISSION_DEBUG = "mininglevels.debug";

Expand Down

0 comments on commit 93b64d2

Please sign in to comment.