From c8648d240d6b320f9f547b70ea35f98d447b8259 Mon Sep 17 00:00:00 2001 From: comp500 Date: Tue, 6 Feb 2024 00:27:01 +0000 Subject: [PATCH] Also allow 1.20.1 (fixes #277) --- build.gradle | 2 +- gradle.properties | 2 +- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 9d95d94..8198480 100644 --- a/build.gradle +++ b/build.gradle @@ -111,7 +111,7 @@ publishing { } // TODO: infer from fabric.mod.json?! -def supportedVersions = ["1.20.2", "1.20.3", "${project.minecraft_version}"] +def supportedVersions = ["1.20.1", "1.20.2", "1.20.3", "${project.minecraft_version}"] def verName = "Indium ${project.mod_version} for Minecraft 1.20.x/Sodium ${project.sodium_version}" // Check version is as expected diff --git a/gradle.properties b/gradle.properties index 30fb9c3..aabcd68 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ minecraft_version=1.20.4 yarn_mappings=1.20.4+build.3 loader_version=0.15.3 # Mod Properties -mod_version=1.0.29 +mod_version=1.0.30 maven_group=link.infra archives_base_name=indium # Dependencies diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index c1ff32b..73d550c 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -28,7 +28,7 @@ ], "depends": { "fabricloader": ">=0.8.0", - "minecraft": "~1.20.2", + "minecraft": "~1.20.1", "sodium": "0.5.8", "fabric-renderer-api-v1": ">=3.2.0", "fabric-resource-loader-v0": ">=0.4.0"