Updated version

This commit is contained in:
Robinson 2023-01-10 01:22:45 +01:00
parent 25314fb414
commit 2c121a191c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
5 changed files with 5 additions and 5 deletions

View File

@ -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.35"
const val version = "1.36"
// set as project.ext
const val name = "Utilities"

View File

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

View File

@ -37,7 +37,7 @@ class GtkLoader {
*/
public static
String getVersion() {
return "1.35";
return "1.36";
}
// 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.35";
return "1.36";
}
static {

View File

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