Skip to content

Commit

Permalink
build: Release 6.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed May 18, 2022
1 parent d037da3 commit 41f546c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .lift.toml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static void bypass(boolean bypass, Runnable run) {
* @param chunkZ Chunk Z position
* @param queue Queue to write to, if desired.
* @return true if generation occurred.
* @since TODO
* @since 6.8.0
*/
public static boolean generateChunk(
final @NonNull String world,
Expand Down Expand Up @@ -187,7 +187,7 @@ public static boolean generateChunk(
* @deprecated Use {@link AugmentedUtils#generateChunk(String, int, int, QueueCoordinator)} as chunkObject is not required
* in the above method
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public static boolean generate(
@Nullable Object chunkObject,
final @NonNull String world,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinato
*
* @param min Inclusive location of the minimum point to limit the scope to.
* @param max Inclusive location of the maximum point to limit the scope to.
* @since TODO
* @since 6.8.0
*/
public BlockArrayCacheScopedQueueCoordinator(Location min, Location max) {
super(null, min, max);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* @deprecated This class is poorly designed and will no longer be used in P2
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public class ChunkQueueCoordinator extends ScopedQueueCoordinator {

public final BiomeType[][][] biomeResult;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public boolean setBlock(final int x, final int y, final int z, final @NonNull Pa
* If the queue should accept biome placement
*
* @param enabled If biomes should be enabled
* @since TODO
* @since 6.8.0
*/
public abstract void setBiomesEnabled(boolean enabled);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*
* @deprecated This should be renamed to NormalizedScopedQueueCoordinator or something.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public class ScopedQueueCoordinator extends DelegateQueueCoordinator {

private final Location min;
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.7.1-SNAPSHOT"
version = "6.8.0"

allprojects {
group = "com.plotsquared"
Expand Down

0 comments on commit 41f546c

Please sign in to comment.