Skip to content

Commit 37bfe42

Browse files
committed
Release 2.7.0
1 parent f58f00e commit 37bfe42

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ logger.lifecycle("""
3434
*******************************************
3535
""")
3636

37-
var rootVersion by extra("2.6.5")
37+
var rootVersion by extra("2.7.0")
3838
var snapshot by extra("SNAPSHOT")
3939
var revision: String by extra("")
4040
var buildNumber by extra("")
@@ -52,7 +52,7 @@ ext {
5252
}
5353
}
5454

55-
version = String.format("%s-%s", rootVersion, buildNumber)
55+
version = String.format("%s", rootVersion)
5656

5757
if (!project.hasProperty("gitCommitHash")) {
5858
apply(plugin = "org.ajoberstar.grgit")

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/processor/EntityInBlockRemovingProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Processor that removes existing entities that would not be in air after the edit
1717
*
18-
* @since TODO
18+
* @since 2.7.0
1919
*/
2020
public class EntityInBlockRemovingProcessor implements IBatchProcessor {
2121

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/pattern/TypeSwapPattern.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Pattern that replaces blocks based on their ID, matching for an "input" and replacing with an "output" string. The "input"
1717
* string may be regex. Keeps as much of the block state as possible, excluding NBT data.
1818
*
19-
* @since TODO
19+
* @since 2.7.0
2020
*/
2121
public class TypeSwapPattern extends AbstractExtentPattern {
2222

@@ -34,7 +34,7 @@ public class TypeSwapPattern extends AbstractExtentPattern {
3434
* @param inputString string to replace. May be regex.
3535
* @param outputString string to replace with
3636
* @param allowRegex if regex should be allowed for input string matching
37-
* @since TODO
37+
* @since 2.7.0
3838
*/
3939
public TypeSwapPattern(Extent extent, String inputString, String outputString, boolean allowRegex) {
4040
super(extent);

worldedit-core/src/main/java/com/fastasyncworldedit/core/internal/exception/FaweException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public FaweException(Component reason, Type type) {
4141
* New instance of a given {@link FaweException.Type}
4242
*
4343
* @param ignorable if an edit can continue if this exception is caught, e.g. by {@link com.fastasyncworldedit.core.extent.LimitExtent}
44-
* @since TODO
44+
* @since 2.7.0
4545
*/
4646
public FaweException(Component reason, Type type, boolean ignorable) {
4747
this.message = reason;
@@ -70,7 +70,7 @@ public Type getType() {
7070
/**
7171
* If an edit can continue if this exception is caught, e.g. by {@link com.fastasyncworldedit.core.extent.LimitExtent}
7272
*
73-
* @since TODO
73+
* @since 2.7.0
7474
*/
7575
public boolean ignorable() {
7676
return ignorable;

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/QueueHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ public boolean trim(boolean aggressive) {
516516
* <p>
517517
* Internal API usage only.
518518
*
519-
* @since TODO
519+
* @since 2.7.0
520520
*/
521521
public ExecutorService getForkJoinPoolPrimary() {
522522
return forkJoinPoolPrimary;
@@ -528,7 +528,7 @@ public ExecutorService getForkJoinPoolPrimary() {
528528
* <p>
529529
* Internal API usage only.
530530
*
531-
* @since TODO
531+
* @since 2.7.0
532532
*/
533533
public ExecutorService getForkJoinPoolSecondary() {
534534
return forkJoinPoolSecondary;

worldedit-core/src/main/java/com/fastasyncworldedit/core/regions/FaweMask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public boolean isValid(Player player, FaweMaskManager.MaskType type) {
3838
* @param type type of mask
3939
* @param notify if the player should be notified
4040
* @return if still valid
41-
* @since TODO
41+
* @since 2.7.0
4242
*/
4343
public boolean isValid(Player player, FaweMaskManager.MaskType type, boolean notify) {
4444
return isValid(player, type);

worldedit-core/src/main/java/com/fastasyncworldedit/core/regions/FaweMaskManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public String toString() {
3030
/**
3131
* Get a {@link FaweMask} for the given player and {@link MaskType}. If isWhitelist is false, will return a "blacklist" mask.
3232
*
33-
* @since TODO
33+
* @since 2.7.0
3434
*/
3535
public FaweMask getMask(final Player player, MaskType type, boolean isWhitelist, boolean notify) {
3636
return getMask(player, type, isWhitelist);

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/TaskManager.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public ForkJoinPool getPublicForkJoinPool() {
9191
*
9292
* @deprecated Deprecated without replacement as unused internally, and poor implementation of what it's designed to do.
9393
*/
94-
@Deprecated(forRemoval = true, since = "TODO")
94+
@Deprecated(forRemoval = true, since = "2.7.0")
9595
public void parallel(Collection<Runnable> runables) {
9696
for (Runnable run : runables) {
9797
pool.submit(run);
@@ -106,7 +106,7 @@ public void parallel(Collection<Runnable> runables) {
106106
* @param numThreads number of threads (null = config.yml parallel threads)
107107
* @deprecated Deprecated without replacement as unused internally, and poor implementation of what it's designed to do.
108108
*/
109-
@Deprecated(forRemoval = true, since = "TODO")
109+
@Deprecated(forRemoval = true, since = "2.7.0")
110110
public void parallel(Collection<Runnable> runnables, @Nullable Integer numThreads) {
111111
if (runnables == null) {
112112
return;
@@ -278,7 +278,7 @@ public void run() {
278278
/**
279279
* @deprecated Deprecated without replacement as unused internally, and poor implementation of what it's designed to do.
280280
*/
281-
@Deprecated(forRemoval = true, since = "TODO")
281+
@Deprecated(forRemoval = true, since = "2.7.0")
282282
public void wait(AtomicBoolean running, int timeout) {
283283
try {
284284
long start = System.currentTimeMillis();
@@ -299,7 +299,7 @@ public void wait(AtomicBoolean running, int timeout) {
299299
/**
300300
* @deprecated Deprecated without replacement as unused internally, and poor implementation of what it's designed to do.
301301
*/
302-
@Deprecated(forRemoval = true, since = "TODO")
302+
@Deprecated(forRemoval = true, since = "2.7.0")
303303
public void notify(AtomicBoolean running) {
304304
running.set(false);
305305
synchronized (running) {

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/task/AsyncNotifyKeyedQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* async queue that accepts a {@link Thread.UncaughtExceptionHandler} for exception handling per instance, delegating to a
1414
* parent {@link KeyQueuedExecutorService}.
1515
*
16-
* @since TODO
16+
* @since 2.7.0
1717
*/
1818
public class AsyncNotifyKeyedQueue implements Closeable {
1919

worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockType.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected BlockType(String id, int internalId, List<BlockState> states) {
8686
* a specific requirement to actually create new block types, please contact the FAWE devs to discuss. Use
8787
* {@link BlockTypes#get(String)} instead.
8888
*/
89-
@Deprecated(since = "TODO")
89+
@Deprecated(since = "2.7.0")
9090
//FAWE end
9191
public BlockType(String id) {
9292
this(id, null);
@@ -98,7 +98,7 @@ public BlockType(String id) {
9898
* a specific requirement to actually create new block types, please contact the FAWE devs to discuss. Use
9999
* {@link BlockTypes#get(String)} instead.
100100
*/
101-
@Deprecated(since = "TODO")
101+
@Deprecated(since = "2.7.0")
102102
//FAWE end
103103
public BlockType(String id, Function<BlockState, BlockState> values) {
104104
// If it has no namespace, assume minecraft.

0 commit comments

Comments
 (0)