diff options
author | isXander <xandersmith2008@gmail.com> | 2023-12-07 20:44:54 +0000 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2023-12-07 20:44:54 +0000 |
commit | f54989903c4697fe14bdc6f1998f4a88757cdd0c (patch) | |
tree | b5daa0eb1fcf505f89b4360d1929259a76ffd0a8 | |
parent | a5c7dc6b85e3a283077ef590e62016f614cdd954 (diff) | |
download | YetAnotherConfigLib-f54989903c4697fe14bdc6f1998f4a88757cdd0c.tar.gz YetAnotherConfigLib-f54989903c4697fe14bdc6f1998f4a88757cdd0c.tar.bz2 YetAnotherConfigLib-f54989903c4697fe14bdc6f1998f4a88757cdd0c.zip |
fix version constraint issue on fabric
-rw-r--r-- | build.gradle.kts | 2 | ||||
-rw-r--r-- | changelogs/3.3.1+1.20.4.md | 3 | ||||
-rw-r--r-- | fabric/src/main/resources/fabric.mod.json | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index f92f710..b3118c0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ architectury { minecraft = libs.versions.minecraft.get() } -version = "3.3.0+1.20.4" +version = "3.3.1+1.20.4" val isBeta = "beta" in version.toString() val changelogText = rootProject.file("changelogs/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog provided." diff --git a/changelogs/3.3.1+1.20.4.md b/changelogs/3.3.1+1.20.4.md new file mode 100644 index 0000000..a90c1e2 --- /dev/null +++ b/changelogs/3.3.1+1.20.4.md @@ -0,0 +1,3 @@ +# YetAnotherConfigLib v3.3.1 for 1.20.4 + +- Fix version constraint issue on Fabric diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index 442bfd3..f2979ff 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -17,7 +17,7 @@ "environment": "*", "depends": { "fabricloader": ">=0.14.0", - "minecraft": "1.20.3 1.20.4", + "minecraft": ["1.20.4", "1.20.3"], "java": ">=17", "fabric-resource-loader-v0": "*" }, |