Skip to content

Commit f515073

Browse files
committed
Release 2.13.1
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 2734cd4 commit f515073

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ext {
5151
}
5252
}
5353

54-
version = String.format("%s-%s", rootVersion, buildNumber)
54+
version = String.format("%s", rootVersion)
5555

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

worldedit-bukkit/src/main/java/com/fastasyncworldedit/bukkit/util/image/BukkitImageViewer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* @deprecated for removal with no replacement. Out of scope for FAWE.
1212
*/
13-
@Deprecated(forRemoval = true, since = "TODO")
13+
@Deprecated(forRemoval = true, since = "2.13.1")
1414
public class BukkitImageViewer implements ImageViewer {
1515

1616
public BukkitImageViewer(Player player) {

worldedit-core/src/main/java/com/fastasyncworldedit/core/IFawe.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public interface IFawe {
2222
/**
2323
* @deprecated for removal with no replacement. Out of scope for FAWE.
2424
*/
25-
@Deprecated(forRemoval = true, since = "TODO")
25+
@Deprecated(forRemoval = true, since = "2.13.1")
2626
default ImageViewer getImageViewer(Player player) {
2727
return null;
2828
}
@@ -47,7 +47,7 @@ default String getDebugInfo() {
4747
*/
4848
Preloader getPreloader(boolean initialise);
4949

50-
@Deprecated(forRemoval = true, since = "TODO")
50+
@Deprecated(forRemoval = true, since = "2.13.1")
5151
default boolean isChunksStretched() {
5252
return true;
5353
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/math/transform/MutatingOperationTransformHolder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* the start of an operation.
1212
*
1313
* @param <T> transform to mutate type
14-
* @since TODO
14+
* @since 2.13.1
1515
*/
1616
public class MutatingOperationTransformHolder<T extends Transform> implements Transform {
1717

@@ -22,7 +22,7 @@ public class MutatingOperationTransformHolder<T extends Transform> implements Tr
2222
* Construct new instance
2323
*
2424
* @param transform transform to mutate
25-
* @since TODO
25+
* @since 2.13.1
2626
*/
2727
public MutatingOperationTransformHolder(T transform, Function<? super T, ? extends T> operation) {
2828
this.transform = transform;
@@ -36,7 +36,7 @@ public MutatingOperationTransformHolder(T transform, Function<? super T, ? exten
3636
* Implementation detail: it may be possible for this method to be called multiple times before an operation actually occurs.
3737
*
3838
* @param transform Transform to transform
39-
* @since TODO
39+
* @since 2.13.1
4040
*/
4141
public static Transform transform(Transform transform) {
4242
return transform(transform, false);
@@ -50,7 +50,7 @@ public static Transform transform(Transform transform) {
5050
*
5151
* @param transform Transform to transform
5252
* @param parallel If the context is potentially parallel, meaning the given transform will be copied if required
53-
* @since TODO
53+
* @since 2.13.1
5454
*/
5555
public static Transform transform(Transform transform, boolean parallel) {
5656
return switch (transform) {
@@ -69,7 +69,7 @@ public static Transform transform(Transform transform, boolean parallel) {
6969
/**
7070
* Apply the mutator to the transform
7171
*
72-
* @since TODO
72+
* @since 2.13.1
7373
*/
7474
public MutatingOperationTransformHolder<T> mutate() {
7575
if (operation != null) {

worldedit-core/src/main/java/com/sk89q/worldedit/math/transform/CombinedTransform.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public Transform combine(Transform other) {
104104
* mutable ({@link MutatingOperationTransformHolder})
105105
*
106106
* @return view of held transforms
107-
* @since TODO
107+
* @since 2.13.1
108108
*/
109109
public List<Transform> getTransforms() {
110110
return List.of(transforms);

0 commit comments

Comments
 (0)