From d2befb1a9b6c679d3dcc079aed06e0b244f5f62a Mon Sep 17 00:00:00 2001 From: parallela Date: Tue, 4 Aug 2026 20:22:56 +0300 Subject: [PATCH] Build against LimboAPI 1.1.27 for Minecraft 26.2 LimboAPI 1.1.27 adds MINECRAFT_26_2 to WorldVersion and BlockEntityVersion, which is what 26.2 clients need for correct item/block ids. LimboAuth itself holds no protocol-specific code - the public API it uses (Limbo, LimboFactory, VirtualWorld, LimboPlayer, ...) is unchanged between 1.1.26 and 1.1.27 apart from copyright headers - so this is a dependency bump, not a port. limboapiVersion 1.1.26 -> 1.1.27 velocityVersion 3.4.0-SNAPSHOT -> 3.5.0-SNAPSHOT (what LimboAPI targets) Java 17 -> 21 (LimboAPI is Java 21) Co-Authored-By: Claude Opus 5 (1M context) --- build.gradle | 4 ++-- gradle.properties | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 0a5e7b10..585802a6 100644 --- a/build.gradle +++ b/build.gradle @@ -13,8 +13,8 @@ setGroup("net.elytrium") setVersion("1.1.14") java { - setSourceCompatibility(JavaVersion.VERSION_17) - setTargetCompatibility(JavaVersion.VERSION_17) + setSourceCompatibility(JavaVersion.VERSION_21) + setTargetCompatibility(JavaVersion.VERSION_21) } compileJava { diff --git a/gradle.properties b/gradle.properties index cbf6380b..ebb856ae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -limboapiVersion=1.1.26 -velocityVersion=3.4.0-SNAPSHOT +limboapiVersion=1.1.27 +velocityVersion=3.5.0-SNAPSHOT nettyVersion=4.1.105.Final floodgateVersion=2.2.0-SNAPSHOT fastutilVersion=8.5.11