Skip to content

Commit

Permalink
Release 2.9.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <mc.cache@web.de>
  • Loading branch information
NotMyFault committed Feb 6, 2024
1 parent 4ef4b87 commit 974078c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ logger.lifecycle("""
*******************************************
""")

var rootVersion by extra("2.8.5")
var rootVersion by extra("2.9.0")
var snapshot by extra("SNAPSHOT")
var revision: String by extra("")
var buildNumber by extra("")
Expand All @@ -52,7 +52,7 @@ ext {
}
}

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

if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ public ThreadPoolExecutor newBlockingExecutor() {
* Create a new blocking executor with specified name and FaweCache logger
*
* @return new blocking executor
* @since TODO
* @since 2.9.0
*/
public ThreadPoolExecutor newBlockingExecutor(String name) {
return newBlockingExecutor(name, LOGGER);
Expand All @@ -636,7 +636,7 @@ public ThreadPoolExecutor newBlockingExecutor(String name) {
* Create a new blocking executor with specified name and logger
*
* @return new blocking executor
* @since TODO
* @since 2.9.0
*/
public ThreadPoolExecutor newBlockingExecutor(String name, Logger logger) {
int nThreads = Settings.settings().QUEUE.PARALLEL_THREADS;
Expand Down

0 comments on commit 974078c

Please sign in to comment.