From 1d74690f32fcc83b0cb1076fa24920a07ed3c9e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?der=5Ffr=C3=BChling?= Date: Tue, 9 Apr 2024 14:03:23 -0700 Subject: [PATCH] fix: Create Fabric version does not follow semver in a supported way! Fixes issue by adding all compatible versions of Create Fabric to the dependency list. And, bump version. --- changelog.md | 2 +- fabric/src/main/resources/fabric.mod.json | 6 +++++- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 5a3a626..2459df5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,3 @@ - Implemented Architectury. Create: Train Perspective now supports Fabric as well! -Full Changelog: https://github.com/der-fruhling/create-train-perspective/compare/v0.1.2...v0.2.0 +Full Changelog: https://github.com/der-fruhling/create-train-perspective/compare/v0.2.0...v0.2.1 diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index a78a2e5..99458eb 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -17,7 +17,11 @@ ], "depends": { "architectury": "*", - "create": ">=0.5.1", + "create": [ + "0.5.1-d-build.1161+mc1.20.1", + "0.5.1-f-build.1335+mc1.20.1", + "0.5.1-f-build.1417+mc1.20.1" + ], "minecraft": "1.20.1" } } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index fba33fd..8dd079f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ quilt_loader_version=0.21.2-beta.2 quilt_fabric_api_version=7.4.0+0.90.0-1.20.1 mod_id=create_train_perspective -mod_version=0.2.0 +mod_version=0.2.1 maven_group=net.derfruhling.minecraft archives_base_name=create-train-perspective