From 2c538d4891374faa36dde51d04874aba518234bd Mon Sep 17 00:00:00 2001 From: ItsNature Date: Tue, 5 May 2026 02:58:14 +0200 Subject: [PATCH] Bump Apollo to 1.2.6 --- maven-repository.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maven-repository.mdx b/maven-repository.mdx index b5fc6ef..47e607b 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.5 + 1.2.6 provided com.lunarclient apollo-extra-adventure4 - 1.2.5 + 1.2.6 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.5' + compileOnly 'com.lunarclient:apollo-api:1.2.6' // For Adventure support add the following dependency. - compileOnly 'com.lunarclient:apollo-extra-adventure4:1.2.5' + compileOnly 'com.lunarclient:apollo-extra-adventure4:1.2.6' } ``` ```kotlin filename="build.gradle.kts" dependencies { - compileOnly("com.lunarclient:apollo-api:1.2.5") + compileOnly("com.lunarclient:apollo-api:1.2.6") // For Adventure support add the following dependency. - compileOnly("com.lunarclient:apollo-extra-adventure4:1.2.5") + compileOnly("com.lunarclient:apollo-extra-adventure4:1.2.6") } ```