From 0f33465d765d88361d32a52a6ab9d077efa4a453 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Tue, 29 Jul 2025 18:33:50 +0200 Subject: [PATCH] Release 7.5.5 Signed-off-by: Alexander Brandes --- Core/src/main/java/com/plotsquared/core/plot/Plot.java | 6 +++--- Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java | 2 +- build.gradle.kts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index e580b14f9..655dc6d3f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -352,7 +352,7 @@ public class Plot { * @param arg The search term * @param message If a message should be sent to the player if a plot cannot be found * @return The plot if only 1 result is found, or null - * @since TODO + * @since 7.5.5 */ public static @Nullable Plot getPlotFromStringUnchecked( final @Nullable PlotPlayer player, @@ -434,7 +434,7 @@ public class Plot { * @param string plot id/area + id * @param player {@link PlotPlayer} player to notify if plot is invalid (outside bounds) * @return New or existing plot object - * @since TODO + * @since 7.5.5 */ public static @Nullable Plot fromString( final @Nullable PlotArea defaultArea, @@ -457,7 +457,7 @@ public class Plot { * @param defaultArea if no area is specified * @param string plot id/area + id * @return New or existing plot object - * @since TODO + * @since 7.5.5 */ public static @Nullable Plot fromStringUnchecked(final @Nullable PlotArea defaultArea, final @NonNull String string) { final String[] split = string.split("[;,]"); diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java b/Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java index 1285f2b6d..dc4edf4ad 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java @@ -67,7 +67,7 @@ public class PlotTitle { * Provides a string representation of this plot title value (used in placeholders). * * @return the plot title representation in the format {@code "" "<subtitle>"} - * @since TODO + * @since 7.5.5 */ @Override public String toString() { diff --git a/build.gradle.kts b/build.gradle.kts index 7601224fe..0fc522ce2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ plugins { } group = "com.intellectualsites.plotsquared" -version = "7.5.5-SNAPSHOT" +version = "7.5.5" if (!File("$rootDir/.git").exists()) { logger.lifecycle("""