Skip to content

Commit 774c327

Browse files
committed
v3.1.2 (#3)
1 parent 37858a7 commit 774c327

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>dev.hypera</groupId>
2424
<artifactId>UpdateLib</artifactId>
25-
<version>3.1.2-SNAPSHOT</version>
25+
<version>3.1.2</version>
2626
<packaging>jar</packaging>
2727

2828
<name>UpdateLib</name>

src/main/java/dev/hypera/updatelib/UpdateLib.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@
2020
import dev.hypera.updatelib.checkers.UpdateChecker;
2121
import dev.hypera.updatelib.data.CheckData;
2222
import dev.hypera.updatelib.objects.UpdateStatus;
23-
import dev.hypera.updatelib.objects.UpdateStatusBuilder;
2423

2524
import java.util.Timer;
2625
import java.util.TimerTask;
2726
import java.util.function.Consumer;
2827

2928
public class UpdateLib {
3029

31-
private final static String VERSION = "3.1.2-SNAPSHOT"; // Current UpdateLib version.
30+
private final static String VERSION = "3.1.2"; // Current UpdateLib version.
3231

3332
private final long resourceId;
3433
private final String currentVersion;

src/main/java/dev/hypera/updatelib/checkers/UpdateChecker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public interface UpdateChecker {
2525
* Check for an update.
2626
*
2727
* @param data Check data.
28+
*
2829
* @return {@link UpdateStatus}
2930
* @throws Exception Any exceptions that occur while checking for updates.
3031
* @since 3.0.0-SNAPSHOT

src/main/java/dev/hypera/updatelib/checkers/impl/PolymartUpdateChecker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public class PolymartUpdateChecker implements UpdateChecker {
3838
* Check for an update using Polymart's API.
3939
*
4040
* @param data Check data.
41+
*
4142
* @return {@link UpdateStatus}
4243
* @throws Exception Any exceptions that occur while checking for updates.
4344
* @since 3.0.0-SNAPSHOT

src/main/java/dev/hypera/updatelib/checkers/impl/SpigotLegacyUpdateChecker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public class SpigotLegacyUpdateChecker implements UpdateChecker {
3636
* Check for an update using SpigotMC's Legacy API.
3737
*
3838
* @param data Check data.
39+
*
3940
* @return {@link UpdateStatus}
4041
* @throws Exception Any exceptions that occur while checking for updates.
4142
* @since 3.0.0-SNAPSHOT

src/main/java/dev/hypera/updatelib/checkers/impl/SpigotUpdateChecker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public class SpigotUpdateChecker implements UpdateChecker {
3838
* Check for an update using SpigotMC's API.
3939
*
4040
* @param data Check data.
41+
*
4142
* @return {@link UpdateStatus}
4243
* @throws Exception Any exceptions that occur while checking for updates.
4344
* @since 3.0.0-SNAPSHOT

0 commit comments

Comments
 (0)