Updated version + build dep

master Version_1.34
Robinson 2023-01-02 15:50:51 +01:00
parent b1945a5ac3
commit 8850664172
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ import java.time.Instant
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins {
id("com.dorkbox.GradleUtils") version "3.3.1"
id("com.dorkbox.GradleUtils") version "3.5"
id("com.dorkbox.Licensing") version "2.17"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.13"
@ -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.33"
const val version = "1.34"
// set as project.ext
const val name = "Utilities"

View File

@ -51,7 +51,7 @@ public class ClassUtils {
*/
public static
String getVersion() {
return "1.33";
return "1.34";
}

View File

@ -37,7 +37,7 @@ class GtkLoader {
*/
public static
String getVersion() {
return "1.33";
return "1.34";
}
// objdump -T /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 | grep gtk

View File

@ -42,7 +42,7 @@ class Desktop {
*/
public static
String getVersion() {
return "1.33";
return "1.34";
}
static {

View File

@ -56,7 +56,7 @@ object FileUtil {
/**
* Gets the version number.
*/
val version = "1.33"
val version = "1.34"
private val log = KotlinLogging.logger(FileUtil::class.java.name)