Skip to content

Commit f812fc1

Browse files
committed
build: Release 2.4.0
1 parent edfc5a7 commit f812fc1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ logger.lifecycle("""
2323
*******************************************
2424
""")
2525

26-
var rootVersion by extra("2.3.1")
26+
var rootVersion by extra("2.4.0")
2727
var snapshot by extra("SNAPSHOT")
2828
var revision: String by extra("")
2929
var buildNumber by extra("")
@@ -41,7 +41,7 @@ ext {
4141
}
4242
}
4343

44-
version = String.format("%s-%s", rootVersion, buildNumber)
44+
version = String.format("%s", rootVersion)
4545

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public V load(@Nonnull T key) {
151151
* @param withInitial The supplier used to determine the initial value if a thread cache is created, else to provide a new
152152
* instance of the class being cached if on the main thread.
153153
* @return a {@link Function} referencing a cache, or the given {@link Supplier}
154-
* @since TODO
154+
* @since 2.4.0
155155
*/
156156
public <V> LongFunction<V> createMainThreadSafeCache(Supplier<V> withInitial) {
157157
return new LongFunction<>() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public BlendBall() {
3636
* @param onlyAir Only consider air for comparing existing blocks, and for altering existing blocks
3737
* @param mask Mask to limit the blocks being considered for alteration. Will also limit blocks types able to be
3838
* placed, and will consider blocks not meeting the mask as air
39-
* @since TODO
39+
* @since 2.4.0
4040
*/
4141
public BlendBall(int minFreqDiff, boolean onlyAir, @Nullable CachedMask mask) {
4242
this.minFreqDiff = minFreqDiff;

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/mask/CachedMask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public CachedMask(Mask mask) {
2525
*
2626
* @param mask Mask to cache results of
2727
* @param local If the area will be small
28-
* @since TODO
28+
* @since 2.4.0
2929
*/
3030
public CachedMask(Mask mask, boolean local) {
3131
super(mask);

worldedit-core/src/main/java/com/sk89q/jnbt/NBTUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public static <T extends Tag> T getChildTag(Map<String, Tag> items, String key,
177177
*
178178
* @param map Map to add uuid to
179179
* @param uuid {@link UUID} to add
180-
* @since TODO
180+
* @since 2.4.0
181181
*/
182182
public static void addUUIDToMap(Map<String, Tag> map, UUID uuid) {
183183
int[] uuidArray = new int[4];

worldedit-core/src/main/java/com/sk89q/worldedit/extent/Extent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ default Entity createEntity(Location location, BaseEntity entity) {
157157
* @param location the location
158158
* @param uuid UUID to force the entity to have
159159
* @return a reference to the created entity, or null if the entity could not be created
160-
* @since TODO
160+
* @since 2.4.0
161161
*/
162162
@Nullable
163163
default Entity createEntity(Location location, BaseEntity entity, UUID uuid) {

0 commit comments

Comments
 (0)