From 4dfe503e0a13dae6b4753eb2191bf59acfa728c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Bu=C4=8Dari=C4=87?= Date: Sat, 6 Apr 2024 07:20:09 +0200 Subject: [PATCH] Bump Apollo to 1.1.2 (#15) --- maven-repository.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maven-repository.mdx b/maven-repository.mdx index e2e6712..c2923e0 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.1.1 + 1.1.2 provided com.lunarclient apollo-extra-adventure4 - 1.1.1 + 1.1.2 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.1.1' + compileOnly 'com.lunarclient:apollo-api:1.1.2' // For Adventure support add the following dependency. - compileOnly 'com.lunarclient:apollo-extra-adventure4:1.1.1' + compileOnly 'com.lunarclient:apollo-extra-adventure4:1.1.2' } ``` ```kotlin filename="build.gradle.kts" dependencies { - compileOnly("com.lunarclient:apollo-api:1.1.1") + compileOnly("com.lunarclient:apollo-api:1.1.2") // For Adventure support add the following dependency. - compileOnly("com.lunarclient:apollo-extra-adventure4:1.1.1") + compileOnly("com.lunarclient:apollo-extra-adventure4:1.1.2") } ```