From ada3719d59a116da1c4ef5cef88ccf8e353e78de Mon Sep 17 00:00:00 2001 From: ItsNature Date: Thu, 5 Sep 2024 12:43:56 +0200 Subject: [PATCH] Bump Apollo to 1.1.5 --- maven-repository.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maven-repository.mdx b/maven-repository.mdx index 0fdf406..93a301a 100644 --- a/maven-repository.mdx +++ b/maven-repository.mdx @@ -53,13 +53,13 @@ Visiting the root of the repository in a web browser will redirect to this page, com.lunarclient apollo-api - 1.1.4 + 1.1.5 com.lunarclient apollo-extra-adventure4 - 1.1.4 + 1.1.5 ``` @@ -67,20 +67,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.1.4' + compileOnly 'com.lunarclient:apollo-api:1.1.5' // For Adventure support add the following dependency. - compileOnly 'com.lunarclient:apollo-extra-adventure4:1.1.4' + compileOnly 'com.lunarclient:apollo-extra-adventure4:1.1.5' } ``` ```kotlin filename="build.gradle.kts" dependencies { - compileOnly("com.lunarclient:apollo-api:1.1.4") + compileOnly("com.lunarclient:apollo-api:1.1.5") // For Adventure support add the following dependency. - compileOnly("com.lunarclient:apollo-extra-adventure4:1.1.4") + compileOnly("com.lunarclient:apollo-extra-adventure4:1.1.5") } ```