diff options
author | isXander <xandersmith2008@gmail.com> | 2023-09-24 16:23:35 +0100 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2023-09-24 16:23:35 +0100 |
commit | e44be35f9e35784154934c5aba8c44535d5956a7 (patch) | |
tree | c3ad43e32b29c52b3a6d0ee53d002250180f0595 /fabric | |
parent | d2b67633c1d3ca0c46682b05955dafafd3597f1d (diff) | |
download | YetAnotherConfigLib-e44be35f9e35784154934c5aba8c44535d5956a7.tar.gz YetAnotherConfigLib-e44be35f9e35784154934c5aba8c44535d5956a7.tar.bz2 YetAnotherConfigLib-e44be35f9e35784154934c5aba8c44535d5956a7.zip |
changelog + update version on publishing and mod metadata
Diffstat (limited to 'fabric')
-rw-r--r-- | fabric/build.gradle.kts | 5 | ||||
-rw-r--r-- | fabric/src/main/resources/fabric.mod.json | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/fabric/build.gradle.kts b/fabric/build.gradle.kts index b73de3a..36c6976 100644 --- a/fabric/build.gradle.kts +++ b/fabric/build.gradle.kts @@ -133,7 +133,7 @@ if (modrinthId.isNotEmpty()) { versionNumber.set("${project.version}-fabric") versionType.set(if (isBeta) "beta" else "release") uploadFile.set(tasks["remapJar"]) - gameVersions.set(listOf("1.20", "1.20.1")) + gameVersions.set(listOf("1.20.2")) loaders.set(listOf("fabric", "quilt")) changelog.set(changelogText) syncBodyFrom.set(rootProject.file("README.md").readText()) @@ -152,8 +152,7 @@ if (hasProperty("curseforge.token") && curseforgeId.isNotEmpty()) { id = curseforgeId releaseType = if (isBeta) "beta" else "release" - addGameVersion("1.20") - addGameVersion("1.20.1") + addGameVersion("1.20.2") addGameVersion("Fabric") addGameVersion("Java 17") diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index f74fcd5..39260df 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-", + "minecraft": "~1.20.2", "java": ">=17", "fabric-resource-loader-v0": "*" }, |