\ No newline at end of file
diff --git a/build.gradle b/build.gradle
index f165196..ae0e23d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,10 +1,11 @@
plugins {
id 'java'
id 'maven-publish'
+ id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'net.william278'
-version '1.1'
+version '1.1.1'
repositories {
mavenCentral()
diff --git a/src/main/java/net/william278/desertwell/UpdateChecker.java b/src/main/java/net/william278/desertwell/UpdateChecker.java
index deb429d..8d49c7a 100644
--- a/src/main/java/net/william278/desertwell/UpdateChecker.java
+++ b/src/main/java/net/william278/desertwell/UpdateChecker.java
@@ -74,7 +74,7 @@ public class UpdateChecker {
* @return A {@link CompletableFuture} containing true if the current plugin {@link Version} is outdated
*/
public CompletableFuture isUpToDate() {
- return getLatestVersion().thenApply(latestVersion -> currentVersion.compareTo(latestVersion) > 0);
+ return getLatestVersion().thenApply(latestVersion -> currentVersion.compareTo(latestVersion) >= 0);
}
}
\ No newline at end of file