From 02cdfb0947ec54a130d4a858d8c991a615e346a4 Mon Sep 17 00:00:00 2001 From: ItsNature Date: Mon, 17 Aug 2026 14:58:17 +0200 Subject: [PATCH] Bump Apollo to 1.2.9 --- maven-repository.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maven-repository.mdx b/maven-repository.mdx index 8a8f56c..d1fe3ab 100644 --- a/maven-repository.mdx +++ b/maven-repository.mdx @@ -53,14 +53,14 @@ Visiting the root of the repository in a web browser will redirect to this page, com.lunarclient apollo-api - 1.2.8 + 1.2.9 provided com.lunarclient apollo-extra-adventure4 - 1.2.8 + 1.2.9 provided @@ -69,20 +69,20 @@ Visiting the root of the repository in a web browser will redirect to this page, ```groovy filename="build.gradle" dependencies { - compileOnly 'com.lunarclient:apollo-api:1.2.8' + compileOnly 'com.lunarclient:apollo-api:1.2.9' // For Adventure support add the following dependency. - compileOnly 'com.lunarclient:apollo-extra-adventure4:1.2.8' + compileOnly 'com.lunarclient:apollo-extra-adventure4:1.2.9' } ``` ```kotlin filename="build.gradle.kts" dependencies { - compileOnly("com.lunarclient:apollo-api:1.2.8") + compileOnly("com.lunarclient:apollo-api:1.2.9") // For Adventure support add the following dependency. - compileOnly("com.lunarclient:apollo-extra-adventure4:1.2.8") + compileOnly("com.lunarclient:apollo-extra-adventure4:1.2.9") } ```