Skip to content

Commit 59372c5

Browse files
committed
Release 2.15.0
Signed-off-by: Alexander Brandes <mc.cache@web.de>
1 parent 3b3180c commit 59372c5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
id("xyz.jpenilla.run-paper") version "3.0.2"
1313
}
1414

15-
var rootVersion by extra("2.14.4")
15+
var rootVersion by extra("2.15.0")
1616
var snapshot by extra("SNAPSHOT")
1717
var revision: String by extra("")
1818
var buildNumber by extra("")
@@ -30,7 +30,7 @@ ext {
3030
}
3131
}
3232

33-
version = String.format("%s-%s", rootVersion, buildNumber)
33+
version = String.format("%s", rootVersion)
3434

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

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IQueueChunk.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ default IQueueChunk<T> reset() {
3535
/**
3636
* Invalidate the {@link WrapperChunk} if present.
3737
*
38-
* @since TODO
38+
* @since 2.15.0
3939
*/
4040
void invalidateWrapper();
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* supplier given on instantiation.
4242
*
4343
* @param <T> type of wrapped chunk
44-
* @since TODO
44+
* @since 2.15.0
4545
*/
4646
@SuppressWarnings("removal")
4747
@ApiStatus.Internal

worldedit-core/src/main/java/com/sk89q/worldedit/util/SideEffectSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private SideEffectSet(int sideEffectsBitmap) {
9696
/**
9797
* Create a new {@link SideEffectSet} with the given side effect set to "on"
9898
*
99-
* @since 2.12.3
99+
* @since 2.15.0
100100
*/
101101
public SideEffectSet with(SideEffect sideEffect) {
102102
return with(sideEffect, SideEffect.State.ON);

0 commit comments

Comments
 (0)