Skip to content

Commit

Permalink
Bumped Guava to 33.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Mar 16, 2024
1 parent b46b305 commit 0cf4a0a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.compile.nullAnalysis.mode": "automatic"
}
Binary file modified lib/bld/bld-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/bld/java/net/thauvin/erik/MobibotBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public MobibotBuild() {
new Repository("https://jitpack.io"),
SONATYPE_SNAPSHOTS_LEGACY);

var log4j = version(2, 23, 0);
var log4j = version(2, 23, 1);
var kotlin = version(1, 9, 23);
scope(compile)
// PircBotX
Expand All @@ -86,7 +86,7 @@ public MobibotBuild() {
.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", "33.0.0-jre"))
.include(dependency("com.google.guava", "guava", "33.1.0-jre"))
.include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 6, 0)))
// Kotlin
.include(dependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.8.0"))
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import java.time.ZoneId
*/
object ReleaseInfo {
const val PROJECT = "mobibot"
const val VERSION = "0.8.0-rc+20240225204340"
const val VERSION = "0.8.0-rc+20240315212330"

@JvmField
@Suppress("MagicNumber")
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
Instant.ofEpochMilli(1708922620439L), ZoneId.systemDefault()
Instant.ofEpochMilli(1710563010532L), ZoneId.systemDefault()
)

const val WEBSITE = "https://mobitopia.org/mobibot/"
Expand Down

0 comments on commit 0cf4a0a

Please sign in to comment.