Skip to content

Commit 4b352ea

Browse files
committed
Release 7.5.5
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 438f1d9 commit 4b352ea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Core/src/main/java/com/plotsquared/core/plot/Plot.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public Plot(
352352
* @param arg The search term
353353
* @param message If a message should be sent to the player if a plot cannot be found
354354
* @return The plot if only 1 result is found, or null
355-
* @since TODO
355+
* @since 7.5.5
356356
*/
357357
public static @Nullable Plot getPlotFromStringUnchecked(
358358
final @Nullable PlotPlayer<?> player,
@@ -434,7 +434,7 @@ public Plot(
434434
* @param string plot id/area + id
435435
* @param player {@link PlotPlayer} player to notify if plot is invalid (outside bounds)
436436
* @return New or existing plot object
437-
* @since TODO
437+
* @since 7.5.5
438438
*/
439439
public static @Nullable Plot fromString(
440440
final @Nullable PlotArea defaultArea,
@@ -457,7 +457,7 @@ public Plot(
457457
* @param defaultArea if no area is specified
458458
* @param string plot id/area + id
459459
* @return New or existing plot object
460-
* @since TODO
460+
* @since 7.5.5
461461
*/
462462
public static @Nullable Plot fromStringUnchecked(final @Nullable PlotArea defaultArea, final @NonNull String string) {
463463
final String[] split = string.split("[;,]");

Core/src/main/java/com/plotsquared/core/plot/PlotTitle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public String subtitle() {
6767
* Provides a string representation of this plot title value (used in placeholders).
6868
*
6969
* @return the plot title representation in the format {@code "<title>" "<subtitle>"}
70-
* @since TODO
70+
* @since 7.5.5
7171
*/
7272
@Override
7373
public String toString() {

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
}
2121

2222
group = "com.intellectualsites.plotsquared"
23-
version = "7.5.5-SNAPSHOT"
23+
version = "7.5.5-Premium"
2424

2525
if (!File("$rootDir/.git").exists()) {
2626
logger.lifecycle("""

0 commit comments

Comments
 (0)