From c8d5e1e2d6ebba4e04a98fe2785c3e0559cf2f6a Mon Sep 17 00:00:00 2001 From: Madeline Miller Date: Wed, 6 Dec 2023 21:52:29 +1000 Subject: [PATCH] Update Fabric to 1.20.3 final release --- worldedit-fabric/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worldedit-fabric/build.gradle.kts b/worldedit-fabric/build.gradle.kts index c61b826b84..1c1e9bbba1 100644 --- a/worldedit-fabric/build.gradle.kts +++ b/worldedit-fabric/build.gradle.kts @@ -22,8 +22,8 @@ applyShadowConfiguration() apply(plugin = "fabric-loom") apply(plugin = "java-library") -val minecraftVersion = "1.20.3-pre2" -val loaderVersion = "0.14.24" +val minecraftVersion = "1.20.3" +val loaderVersion = "0.15.0" val fabricApiConfiguration: Configuration = configurations.create("fabricApi") @@ -64,7 +64,7 @@ dependencies { .toSet() // [2] Request the matching dependency from fabric-loom for (wantedDependency in wantedDependencies) { - val dep = project.the().module(wantedDependency, "0.90.11+1.20.3") + val dep = project.the().module(wantedDependency, "0.91.1+1.20.3") "include"(dep) "modImplementation"(dep) }