diff --git a/release_info.txt b/release_info.txt index b00e5ba..d2c33ac 100644 --- a/release_info.txt +++ b/release_info.txt @@ -22,7 +22,7 @@ object {{v className/}} { Instant.ofEpochMilli({{v epoch/}}L), ZoneId.systemDefault() ) - const val WEBSITE = "https://www.mobitopia.org/mobibot/" + const val WEBSITE = "https://mobitopia.org/mobibot/" const val AUTHOR = "Erik C. Thauvin" const val AUTHOR_URL = "https://erik.thauvin.net/" } diff --git a/src/bld/java/net/thauvin/erik/MobibotBuild.java b/src/bld/java/net/thauvin/erik/MobibotBuild.java index d6a294f..ba67d1d 100644 --- a/src/bld/java/net/thauvin/erik/MobibotBuild.java +++ b/src/bld/java/net/thauvin/erik/MobibotBuild.java @@ -71,7 +71,7 @@ public class MobibotBuild extends Project { ); var log4j = version(2, 22, 0); - var kotlin = version(1, 9, 21); + var kotlin = version(1, 9, 22); scope(compile) // PircBotX .include(dependency("com.github.pircbotx", "pircbotx", "2.3.1")) @@ -82,7 +82,7 @@ public class MobibotBuild extends Project { .include(dependency("commons-net", "commons-net", "3.10.0")) // Google .include(dependency("com.google.code.gson", "gson", "2.10.1")) - .include(dependency("com.google.guava", "guava", "32.1.3-jre")) + .include(dependency("com.google.guava", "guava", "33.0.0-jre")) .include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 1, 0))) // Kotlin .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)) @@ -109,7 +109,7 @@ public class MobibotBuild extends Project { .include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", "1.4.0")); scope(test) .include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 0))) - .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", version(1, 9, 21))) + .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin)) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1))) .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1))); diff --git a/src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt b/src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt index f805722..f499559 100644 --- a/src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt +++ b/src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt @@ -14,15 +14,15 @@ import java.time.ZoneId */ object ReleaseInfo { const val PROJECT = "mobibot" - const val VERSION = "0.8.0-rc+20231218140603" + const val VERSION = "0.8.0-rc+20231224114859" @JvmField @Suppress("MagicNumber") val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant( - Instant.ofEpochMilli(1702937164085L), ZoneId.systemDefault() + Instant.ofEpochMilli(1703447340121L), ZoneId.systemDefault() ) - const val WEBSITE = "https://www.mobitopia.org/mobibot/" + const val WEBSITE = "https://mobitopia.org/mobibot/" const val AUTHOR = "Erik C. Thauvin" const val AUTHOR_URL = "https://erik.thauvin.net/" }