Skip to content

Commit 9f3663b

Browse files
committed
Attempt to release 2.14.1
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 16859a2 commit 9f3663b

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-bukkit/src/main/java/com/fastasyncworldedit/bukkit/adapter/IBukkitAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ default List<org.bukkit.entity.Entity> getEntities(org.bukkit.World world) {
394394
/**
395395
* Import Minecraft internal features into FAWE. Should be executed after worlds loading (in order to capture datapacks)
396396
*
397-
* @since TODO
397+
* @since 2.14.1
398398
*/
399399
default void setupFeatures() {
400400
}

worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/adapter/BukkitImplAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ default void sendBiomeUpdates(World world, Iterable<BlockVector2> chunks) {
339339
* @param pt The location
340340
* @return If it succeeded
341341
*
342-
* @since TODO
342+
* @since 2.14.1
343343
*/
344344
default boolean generateFeature(ConfiguredFeatureType feature, World world, EditSession session, BlockVector3 pt) {
345345
throw new UnsupportedOperationException("This adapter does not support generating features.");
@@ -354,7 +354,7 @@ default boolean generateFeature(ConfiguredFeatureType feature, World world, Edit
354354
* @param pt The location
355355
* @return If it succeeded
356356
*
357-
* @since TODO
357+
* @since 2.14.1
358358
*/
359359
default boolean generateStructure(StructureType feature, World world, EditSession session, BlockVector3 pt) {
360360
throw new UnsupportedOperationException("This adapter does not support generating features.");

worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/FeaturePlacer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Places a feature
2222
*
23-
* @since TODO
23+
* @since 2.14.1
2424
*/
2525
public class FeaturePlacer implements BlockTool {
2626

@@ -29,7 +29,7 @@ public class FeaturePlacer implements BlockTool {
2929
/**
3030
* New instance
3131
*
32-
* @since TODO
32+
* @since 2.14.1
3333
*/
3434
public FeaturePlacer(ConfiguredFeatureType feature) {
3535
this.feature = feature;

worldedit-core/src/main/java/com/fastasyncworldedit/core/command/tool/StructurePlacer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Places a structure
2222
*
23-
* @since TODO
23+
* @since 2.14.1
2424
*/
2525
public class StructurePlacer implements BlockTool {
2626

@@ -29,7 +29,7 @@ public class StructurePlacer implements BlockTool {
2929
/**
3030
* New instance
3131
*
32-
* @since TODO
32+
* @since 2.14.1
3333
*/
3434
public StructurePlacer(StructureType structure) {
3535
this.structure = structure;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Generate a structure at the given location
1111
*
12-
* @since TODO
12+
* @since 2.14.1
1313
*/
1414
public class StructureGenerator implements RegionFunction {
1515

@@ -22,7 +22,7 @@ public class StructureGenerator implements RegionFunction {
2222
* @param editSession the edit session
2323
* @param structureType the structure type
2424
*
25-
* @since TODO
25+
* @since 2.14.1
2626
*/
2727
public StructureGenerator(EditSession editSession, StructureType structureType) {
2828
this.editSession = editSession;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public static boolean isPowerOfTwo(int a) {
443443
* @param bitsPerEntry the number of bits a single element occupies in the array
444444
* @param numberOfEntries the number of elements to store in the array
445445
* @return the size of the array needed to store the elements
446-
* @since TODO
446+
* @since 2.14.1
447447
*/
448448
public static int longArrayLength(int bitsPerEntry, int numberOfEntries) {
449449
int entriesPerLong = Long.SIZE / bitsPerEntry;

worldedit-core/src/main/java/com/sk89q/worldedit/EditSession.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4270,7 +4270,7 @@ public int makeBlob(
42704270
* @param position position to generate at
42714271
* @return blocks affected
42724272
*
4273-
* @since TODO
4273+
* @since 2.14.1
42744274
*/
42754275
public int generateFeature(ConfiguredFeatureType feature, BlockVector3 position) {
42764276
feature.place(this, position);
@@ -4284,7 +4284,7 @@ public int generateFeature(ConfiguredFeatureType feature, BlockVector3 position)
42844284
* @param position position to generate at
42854285
* @return blocks affected
42864286
*
4287-
* @since TODO
4287+
* @since 2.14.1
42884288
*/
42894289
public int generateStructure(StructureType structure, BlockVector3 position) {
42904290
structure.place(this, position);

worldedit-core/src/main/java/com/sk89q/worldedit/entity/BaseEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public BaseEntity(CompoundTag tag) {
130130
* Attempt to retrieve the entity's UUID from its NBT tag
131131
*
132132
* @return entity UUID if possible to retrieve
133-
* @since TODO
133+
* @since 2.14.1
134134
*/
135135
@Nullable
136136
public UUID getUUID() {

worldedit-core/src/main/java/com/sk89q/worldedit/function/generator/FeatureGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Generate a feature at the given location
3030
*
31-
* @since TODO
31+
* @since 2.14.1
3232
*/
3333
public class FeatureGenerator implements RegionFunction {
3434

@@ -41,7 +41,7 @@ public class FeatureGenerator implements RegionFunction {
4141
* @param editSession the edit session
4242
* @param featureType the feature type
4343
*
44-
* @since TODO
44+
* @since 2.14.1
4545
*/
4646
public FeatureGenerator(EditSession editSession, ConfiguredFeatureType featureType) {
4747
this.editSession = editSession;

0 commit comments

Comments
 (0)