Skip to content

Commit b5c22d6

Browse files
committed
Release 2.11.1
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 41d294e commit b5c22d6

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/FaweAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static URL upload(final Clipboard clipboard, final ClipboardFormat format
119119
* @deprecated Opens streams that are not then closed. Use {@link ClipboardFormats#findByFile(File)} and its relevant
120120
* methods to allow closing created streams/closing the reader (which will close the stream(s))
121121
*/
122-
@Deprecated(forRemoval = true, since = "TODO")
122+
@Deprecated(forRemoval = true, since = "2.11.1")
123123
public static Clipboard load(File file) throws IOException {
124124
return ClipboardFormats.findByFile(file).load(file);
125125
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* Not necessarily much faster than {@link com.sk89q.worldedit.extent.clipboard.io.sponge.SpongeSchematicV3Reader}, but uses a
6767
* stream based approach to keep the memory overhead minimal (especially in larger schematics)
6868
*
69-
* @since TODO
69+
* @since 2.11.1
7070
*/
7171
@SuppressWarnings("removal") // JNBT
7272
public class FastSchematicReaderV3 implements ClipboardReader {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Faster, stream-based implementation of {@link com.sk89q.worldedit.extent.clipboard.io.sponge.SpongeSchematicV3Writer} for
3737
* writing schematics conforming the sponge schematic v3 format.
3838
*
39-
* @since TODO
39+
* @since 2.11.1
4040
*/
4141
@SuppressWarnings("removal") // Yes, JNBT is deprecated - we know
4242
public class FastSchematicWriterV3 implements ClipboardWriter {

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/generator/SchemGen.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class SchemGen implements Resource {
2727
/**
2828
* @deprecated Use {@link SchemGen#SchemGen(Mask, Extent, List, boolean, Region)}
2929
*/
30-
@Deprecated(forRemoval = true, since = "TODO")
30+
@Deprecated(forRemoval = true, since = "2.11.1")
3131
public SchemGen(Mask mask, Extent extent, List<ClipboardHolder> clipboards, boolean randomRotate) {
3232
this.mask = mask;
3333
this.extent = extent;
@@ -39,7 +39,7 @@ public SchemGen(Mask mask, Extent extent, List<ClipboardHolder> clipboards, bool
3939
/**
4040
* New instance. Places a schematic on terrain at a given x,z when appropriate
4141
*
42-
* @since TODO
42+
* @since 2.11.1
4343
*/
4444
public SchemGen(Mask mask, Extent extent, List<ClipboardHolder> clipboards, boolean randomRotate, Region region) {
4545
this.mask = mask;

worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/io/ClipboardFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ default boolean isFormat(File file) {
101101
*
102102
* @param inputStream The stream
103103
* @return true if the given stream is of this format
104-
* @since TODO
104+
* @since 2.11.1
105105
*/
106106
default boolean isFormat(InputStream inputStream) {
107107
return false;

worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/io/ClipboardFormats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private ClipboardFormats() {
177177
* @deprecated DO NOT USE. Sponge formats 2 and 3 both use .schem by default.
178178
*/
179179
@Nullable
180-
@Deprecated(forRemoval = true, since = "TODO")
180+
@Deprecated(forRemoval = true, since = "2.11.1")
181181
public static ClipboardFormat findByExtension(String extension) {
182182
checkNotNull(extension);
183183

worldedit-core/src/main/java/com/sk89q/worldedit/history/changeset/ChangeSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public interface ChangeSet extends Closeable {
8383
* @return the change count
8484
* @deprecated History could be larger than int max value so FAWE prefers {@link ChangeSet#longSize()}
8585
*/
86-
@Deprecated(since = "TODO")
86+
@Deprecated(since = "2.11.1")
8787
int size();
8888

8989
//FAWE start
@@ -93,7 +93,7 @@ public interface ChangeSet extends Closeable {
9393
* History could be larger than int max value so FAWE prefers this method.
9494
*
9595
* @return the change count
96-
* @since TODO
96+
* @since 2.11.1
9797
*/
9898
default long longSize() {
9999
return size();

0 commit comments

Comments
 (0)