Skip to content

Commit

Permalink
build: Release 6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Mar 7, 2022
1 parent dc13f25 commit fd4a542
Show file tree
Hide file tree
Showing 17 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class GenChunk extends ScopedQueueCoordinator {
* @param minY minimum world Y, inclusive
* @param maxY maximum world Y, inclusive
*
* @since TODO
* @since 6.6.0
*/
public GenChunk(int minY, int maxY) {
super(null, Location.at("", 0, minY, 0), Location.at("", 15, maxY, 15));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private BukkitWorld(final org.bukkit.World world) {
/**
* Get the min world height from a Bukkit {@link org.bukkit.World}. Inclusive
*
* @since TODO
* @since 6.6.0
*/
public static int getMinWorldHeight(org.bukkit.World world) {
return HAS_MIN_Y ? world.getMinHeight() : 0;
Expand All @@ -97,7 +97,7 @@ public static int getMinWorldHeight(org.bukkit.World world) {
/**
* Get the max world height from a Bukkit {@link org.bukkit.World}. Exclusive
*
* @since TODO
* @since 6.6.0
*/
public static int getMaxWorldHeight(org.bukkit.World world) {
return HAS_MIN_Y ? world.getMaxHeight() : 256;
Expand Down Expand Up @@ -143,7 +143,7 @@ public int hashCode() {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof BukkitWorld;
}
Expand Down
4 changes: 2 additions & 2 deletions Core/src/main/java/com/plotsquared/core/PlotPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ public interface PlotPlatform<P> extends LocaleHolder {
* Gets the default minimum world height for the version of Minecraft that the server is running.
*
* @return minimum world height
* @since TODO
* @since 6.6.0
*/
int versionMinHeight();

/**
* Gets the default maximum world height for the version of Minecraft that the server is running.
*
* @return maximum world height (inclusive)
* @since TODO
* @since 6.6.0
*/
int versionMaxHeight();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ private int get_ey(final HybridPlotWorld hpw, QueueCoordinator queue, int sx, in
* @return if successful
* @deprecated use {@link HybridUtils#regenerateRoad(PlotArea, BlockVector2, int, QueueCoordinator)}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
public boolean regenerateRoad(final PlotArea area, final BlockVector2 chunk, int extend) {
return regenerateRoad(area, chunk, extend, null);
}
Expand All @@ -618,7 +618,7 @@ public boolean regenerateRoad(final PlotArea area, final BlockVector2 chunk, int
* @param extend How far to extend setting air above the road
* @param queueCoordinator {@link QueueCoordinator} to use to set the blocks. Null if one should be created and enqueued
* @return if successful
* @since TODO
* @since 6.6.0
*/
public boolean regenerateRoad(
final PlotArea area,
Expand Down
4 changes: 2 additions & 2 deletions Core/src/main/java/com/plotsquared/core/location/World.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ static <T> NullWorld<T> nullWorld() {
/**
* Get the min world height. Inclusive.
*
* @since TODO
* @since 6.6.0
*/
int getMinHeight();


/**
* Get the max world height. Inclusive.
*
* @since TODO
* @since 6.6.0
*/
int getMaxHeight();

Expand Down
2 changes: 1 addition & 1 deletion Core/src/main/java/com/plotsquared/core/plot/Plot.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
*/
public class Plot {

@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
public static final int MAX_HEIGHT = 256;

private static final Logger LOGGER = LogManager.getLogger("PlotSquared/" + Plot.class.getSimpleName());
Expand Down
4 changes: 2 additions & 2 deletions Core/src/main/java/com/plotsquared/core/plot/PlotArea.java
Original file line number Diff line number Diff line change
Expand Up @@ -1381,7 +1381,7 @@ public int getMinBuildHeight() {
/**
* Get the min height from which P2 will generate blocks. Inclusive.
*
* @since TODO
* @since 6.6.0
*/
public int getMinGenHeight() {
return this.minGenHeight;
Expand All @@ -1390,7 +1390,7 @@ public int getMinGenHeight() {
/**
* Get the max height to which P2 will generate blocks. Inclusive.
*
* @since TODO
* @since 6.6.0
*/
public int getMaxGenHeight() {
return this.maxGenHeight;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public int hashCode() {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof PlotWorld;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public int hashCode() {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof FlagContainer;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public int hashCode() {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof PlotFlag;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public int getZ() {
/**
* Get the minimum layer position stored (usually -4 or 0).
*
* @since TODO
* @since 6.6.0
*/
public int getMinSection() {
return this.minSection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public QueueCoordinator(@Nullable World world) {
* @return a new {@link ScopedQueueCoordinator}
* @deprecated Use {@link ScopedQueueCoordinator#getForChunk(int, int, int, int)}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
public ScopedQueueCoordinator getForChunk(int x, int z) {
if (getWorld() == null) {
return getForChunk(x, z, PlotSquared.platform().versionMinHeight(), PlotSquared.platform().versionMaxHeight());
Expand All @@ -91,7 +91,7 @@ public ScopedQueueCoordinator getForChunk(int x, int z) {
* @param x chunk x coordinate
* @param z chunk z coordinate
* @return a new {@link ScopedQueueCoordinator}
* @since TODO
* @since 6.6.0
*/
public ScopedQueueCoordinator getForChunk(int x, int z, int minY, int maxY) {
int bx = x << 4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private void setCopyFromToConsumer(
});
}

@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
public void setBiome(
final CuboidRegion region,
final int extendBiome,
Expand All @@ -398,7 +398,7 @@ public void setBiome(
* @param biome biome to set
* @param area {@link PlotArea} in which the biome is being set
* @param whenDone task to run when complete
* @since TODO
* @since 6.6.0
*/
public void setBiome(
final CuboidRegion region,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class RegionUtil {
return new CuboidRegion(min, max);
}

@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
public static CuboidRegion createRegion(int pos1x, int pos2x, int pos1z, int pos2z) {
return createRegion(pos1x, pos2x, 0, 255, pos1z, pos2z);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public static void setBiome(String world, int p1x, int p1z, int p2x, int p2z, Bi
* @param world World name
* @param region Region
* @param biome Biome
* @since TODO
* @since 6.6.0
*/
public static void setBiome(String world, final CuboidRegion region, BiomeType biome) {
PlotSquared.platform().worldUtil().setBiomes(world, region, biome);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public int hashCode() {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof UUIDMapping;
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
idea
}

version = "6.5.2-SNAPSHOT"
version = "6.6.0"

allprojects {
group = "com.plotsquared"
Expand Down

0 comments on commit fd4a542

Please sign in to comment.