Skip to content

Commit 974078c

Browse files
committed
Release 2.9.2
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 4ef4b87 commit 974078c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ logger.lifecycle("""
3434
*******************************************
3535
""")
3636

37-
var rootVersion by extra("2.8.5")
37+
var rootVersion by extra("2.9.0")
3838
var snapshot by extra("SNAPSHOT")
3939
var revision: String by extra("")
4040
var buildNumber by extra("")
@@ -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/FaweCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ public ThreadPoolExecutor newBlockingExecutor() {
626626
* Create a new blocking executor with specified name and FaweCache logger
627627
*
628628
* @return new blocking executor
629-
* @since TODO
629+
* @since 2.9.0
630630
*/
631631
public ThreadPoolExecutor newBlockingExecutor(String name) {
632632
return newBlockingExecutor(name, LOGGER);
@@ -636,7 +636,7 @@ public ThreadPoolExecutor newBlockingExecutor(String name) {
636636
* Create a new blocking executor with specified name and logger
637637
*
638638
* @return new blocking executor
639-
* @since TODO
639+
* @since 2.9.0
640640
*/
641641
public ThreadPoolExecutor newBlockingExecutor(String name, Logger logger) {
642642
int nThreads = Settings.settings().QUEUE.PARALLEL_THREADS;

0 commit comments

Comments
 (0)