diff --git a/build.gradle.kts b/build.gradle.kts index f6166a0..9bc89aa 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,7 +37,7 @@ object Extras { // set for the project const val description = "Utilities for use within Java projects" const val group = "com.dorkbox" - const val version = "1.30.1" + const val version = "1.31" // set as project.ext const val name = "Utilities" diff --git a/src/dorkbox/jna/linux/GtkLoader.java b/src/dorkbox/jna/linux/GtkLoader.java index 94d012d..4b46f55 100644 --- a/src/dorkbox/jna/linux/GtkLoader.java +++ b/src/dorkbox/jna/linux/GtkLoader.java @@ -37,7 +37,7 @@ class GtkLoader { */ public static String getVersion() { - return "1.30.1"; + return "1.31"; } // objdump -T /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 | grep gtk diff --git a/src/dorkbox/util/Desktop.java b/src/dorkbox/util/Desktop.java index f8666fe..49f0a3e 100644 --- a/src/dorkbox/util/Desktop.java +++ b/src/dorkbox/util/Desktop.java @@ -42,7 +42,7 @@ class Desktop { */ public static String getVersion() { - return "1.30.1"; + return "1.31"; } static { diff --git a/src/dorkbox/util/FileUtil.kt b/src/dorkbox/util/FileUtil.kt index aea9615..77c6ca1 100644 --- a/src/dorkbox/util/FileUtil.kt +++ b/src/dorkbox/util/FileUtil.kt @@ -56,7 +56,7 @@ object FileUtil { /** * Gets the version number. */ - val version = "1.30.1" + val version = "1.31" private val log = KotlinLogging.logger(FileUtil::class.java.name)