aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2023-03-15 18:06:37 +0000
committerisXander <xandersmith2008@gmail.com>2023-03-15 18:06:37 +0000
commite51e9bc95e2e271c8d55b063f9117eda0a100ab0 (patch)
tree77e6095af343fbfa101a7f2f01da974d4e0cd82d
parent19573b50098696028bdb9c7df941ce9ea2628523 (diff)
downloadYetAnotherConfigLib-e51e9bc95e2e271c8d55b063f9117eda0a100ab0.tar.gz
YetAnotherConfigLib-e51e9bc95e2e271c8d55b063f9117eda0a100ab0.tar.bz2
YetAnotherConfigLib-e51e9bc95e2e271c8d55b063f9117eda0a100ab0.zip
update to 1.19.4 release
-rw-r--r--build.gradle.kts8
-rw-r--r--gradle.properties4
-rw-r--r--src/main/resources/fabric.mod.json2
3 files changed, 7 insertions, 7 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 2787c5f..1d0d437 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -16,7 +16,7 @@ plugins {
val ciRun = System.getenv().containsKey("GITHUB_ACTIONS")
group = "dev.isxander"
-version = "2.3.0+beta.3"
+version = "2.3.0"
if (ciRun)
version = "$version+${grgit.branch.current().name.replace('/', '.')}-SNAPSHOT"
@@ -75,7 +75,7 @@ dependencies {
})
modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion")
- "modClientImplementation"(fabricApi.module("fabric-resource-loader-v0", "0.74.2+1.19.4"))
+ "modClientImplementation"(fabricApi.module("fabric-resource-loader-v0", "0.76.0+1.19.4"))
"testmodImplementation"(sourceSets.main.get().output)
"testmodImplementation"(sourceSets["client"].output)
@@ -133,7 +133,7 @@ if (modrinthId.isNotEmpty()) {
versionNumber.set("${project.version}")
versionType.set("release")
uploadFile.set(tasks["remapJar"])
- gameVersions.set(listOf("1.19.3"))
+ gameVersions.set(listOf("1.19.4"))
loaders.set(listOf("fabric", "quilt"))
dependencies {
required.project("fabric-api")
@@ -154,7 +154,7 @@ if (hasProperty("CURSEFORGE_TOKEN") && curseforgeId.isNotEmpty()) {
id = curseforgeId
releaseType = "release"
- addGameVersion("1.19.3")
+ addGameVersion("1.19.4")
addGameVersion("Fabric")
addGameVersion("Java 17")
diff --git a/gradle.properties b/gradle.properties
index b76e012..866cd28 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx3G
-minecraftVersion=1.19.4-pre1
-fabricLoaderVersion=0.14.15
+minecraftVersion=1.19.4
+fabricLoaderVersion=0.14.17
qmBuild=1
modId=yet-another-config-lib
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index a7148c8..cc2e6b9 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -20,7 +20,7 @@
},
"depends": {
"fabricloader": ">=0.14.0",
- "minecraft": "~1.19.4-beta.1",
+ "minecraft": "~1.19.4",
"java": ">=17",
"fabric-resource-loader-v0": "*"
},