Skip to content

Commit f0af979

Browse files
committed
Release 2.12.0
Signed-off-by: Alexander Brandes <mc.cache@web.de>
1 parent 5121bb8 commit f0af979

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
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.11.3")
37+
var rootVersion by extra("2.12.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-bukkit/src/main/java/com/fastasyncworldedit/bukkit/adapter/NMSAdapter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void sendChunk(IChunkGet chunk, int mask, boolean lighting) {
155155
* Utilises ConcurrentHashMap#compute for easy synchronisation for all of the above. Only tryWriteLock is used in blocks
156156
* synchronised using ConcurrentHashMap methods.
157157
*
158-
* @since TODO
158+
* @since 2.12.0
159159
*/
160160
protected static <LevelChunkSection> boolean setSectionAtomic(
161161
String worldName,
@@ -212,7 +212,7 @@ protected static <LevelChunkSection> boolean setSectionAtomic(
212212
* <p>
213213
* Utilises ConcurrentHashMap#compute for easy synchronisation
214214
*
215-
* @since TODO
215+
* @since 2.12.0
216216
*/
217217
protected static void beginChunkPacketSend(String worldName, IntPair pair, StampLockHolder stampedLock) {
218218
ConcurrentHashMap<IntPair, ChunkSendLock> chunks = FaweBukkitWorld.getWorldSendingChunksMap(worldName);
@@ -233,7 +233,7 @@ protected static void beginChunkPacketSend(String worldName, IntPair pair, Stamp
233233
/**
234234
* Releases the read lock acquired when sending a chunk packet for a chunk
235235
*
236-
* @since TODO
236+
* @since 2.12.0
237237
*/
238238
protected static void endChunkPacketSend(String worldName, IntPair pair, StampLockHolder lockHolder) {
239239
ConcurrentHashMap<IntPair, ChunkSendLock> chunks = FaweBukkitWorld.getWorldSendingChunksMap(worldName);

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/LimitExtent.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class LimitExtent extends AbstractDelegateExtent implements IBatchProcess
5555
* @param limit the limit
5656
* @deprecated Use {@link LimitExtent#LimitExtent(Extent, FaweLimit, Consumer, boolean)}
5757
*/
58-
@Deprecated(forRemoval = true, since = "TODO")
58+
@Deprecated(forRemoval = true, since = "2.12.0")
5959
public LimitExtent(Extent extent, FaweLimit limit) {
6060
this(extent, limit, c -> {
6161
});
@@ -69,7 +69,7 @@ public LimitExtent(Extent extent, FaweLimit limit) {
6969
* @param onErrorMessage consumer to handle a component generated by exceptions
7070
* @deprecated Use {@link LimitExtent#LimitExtent(Extent, FaweLimit, Consumer, boolean)}
7171
*/
72-
@Deprecated(forRemoval = true, since = "TODO")
72+
@Deprecated(forRemoval = true, since = "2.12.0")
7373
public LimitExtent(Extent extent, FaweLimit limit, Consumer<Component> onErrorMessage) {
7474
this(extent, limit, onErrorMessage, false);
7575
}
@@ -81,7 +81,7 @@ public LimitExtent(Extent extent, FaweLimit limit, Consumer<Component> onErrorMe
8181
* @param limit the limit
8282
* @param onErrorMessage consumer to handle a component generated by exceptions
8383
* @param processing if this limit extent is expected to be processing
84-
* @since TODO
84+
* @since 2.12.0
8585
*/
8686
public LimitExtent(
8787
Extent extent,

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/LinearClipboard.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public LinearClipboard(BlockVector3 dimensions, BlockVector3 offset) {
6060
/**
6161
* @deprecated will be removed as it is unused and uses outdated types
6262
*/
63-
@Deprecated(forRemoval = true, since = "TODO")
63+
@Deprecated(forRemoval = true, since = "2.12.0")
6464
public abstract Collection<CompoundTag> getTileEntities();
6565

6666
@Override

worldedit-core/src/main/java/com/fastasyncworldedit/core/limit/FaweLimit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public boolean isUnlimited() {
299299
/**
300300
* Get an {@link FaweLimit} representing the amount of a limit used from a given "original" limit
301301
*
302-
* @since TODO
302+
* @since 2.12.0
303303
*/
304304
public FaweLimit getLimitUsed(FaweLimit originalLimit) {
305305
FaweLimit newLimit = new FaweLimit();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public static void addUUIDToMap(Map<String, LinTag<?>> map, UUID uuid) {
216216
* {@return the position data of the given tag}
217217
*
218218
* @param compoundTag the tag to extract position information from
219-
* @since TODO
219+
* @since 2.12.0
220220
*/
221221
public static Vector3 entityPosition(FaweCompoundTag compoundTag) {
222222
LinListTag<LinDoubleTag> pos = compoundTag.linTag().getListTag("Pos", LinTagType.doubleTag());

worldedit-core/src/main/java/com/sk89q/worldedit/command/tool/brush/Brush.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public interface Brush {
4444
/**
4545
* If this brush is expected to set blocks synchronously, i.e. from one thread (at a time)
4646
*
47-
* @since TODO
47+
* @since 2.12.0
4848
*/
4949
default boolean setsSynchronously() {
5050
return true;

worldedit-core/src/main/java/com/sk89q/worldedit/command/util/annotation/SynchronousSettingExpected.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Indicates it is expected that blocks will only be set synchronously, i.e. from one thread (at a time)
1212
*
13-
* @since TODO
13+
* @since 2.12.0
1414
*/
1515
@Retention(RetentionPolicy.RUNTIME)
1616
@Target({

0 commit comments

Comments
 (0)