diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java index 13d86f26c..fdada2459 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java @@ -102,7 +102,7 @@ public enum CommandCategory implements Caption { * * @param player The player to check against * @return {@code true} if at least one command of this category can be executed by the player, {@code false} otherwise - * @since TODO + * @since 6.5.0 */ boolean canAccess(PlotPlayer player) { return !MainCommand.getInstance().getCommands(this, player).isEmpty(); diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java index 8cd1f810f..e117dfad9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java @@ -121,7 +121,7 @@ public class PlotInventory { * @param item the item to place * @return {@code true} if the item could be placed, otherwise {@code false} * @see InventoryUtil#setItemChecked(PlotInventory, int, PlotItemStack) - * @since TODO + * @since 6.5.0 */ public boolean setItemChecked(int index, PlotItemStack item) { if (!this.inventoryUtil.setItemChecked(this, index, item)) { diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java index ac1baacac..9febe3f2d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java @@ -54,7 +54,7 @@ public class PlotItemStack { * @param amount Amount of items in the stack * @param name The display name of the item stack * @param lore The item stack lore - * @since TODO + * @since 6.5.0 */ public PlotItemStack( final ItemType type, final int amount, final String name, diff --git a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java index c9affa957..d8bb92078 100644 --- a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java @@ -45,7 +45,7 @@ public abstract class InventoryUtil { * @param index The index where to place the item * @param item The item to place into the inventory * @return {@code true} if the item could be placed, {@code false} otherwise (e.g. item not available in current version) - * @since TODO + * @since 6.5.0 */ public abstract boolean setItemChecked( final PlotInventory plotInventory, final int index, diff --git a/build.gradle.kts b/build.gradle.kts index d5da0e54b..09125d0db 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,7 +18,7 @@ plugins { idea } -version = "6.4.1-SNAPSHOT" +version = "6.5.0" allprojects { group = "com.plotsquared" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2e6e5897b..b1159fc54 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists