From 03cfd21e9ca14df7cf931c506d55582648479395 Mon Sep 17 00:00:00 2001 From: Matthew Czyr Date: Tue, 26 Dec 2023 17:45:23 -0500 Subject: [PATCH] Update to Forge 1.20.4 --- gradle.properties | 10 +++++----- src/main/resources/META-INF/mods.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gradle.properties b/gradle.properties index 887e846..91f2249 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,13 +7,13 @@ org.gradle.daemon=false ## Environment Properties # The Minecraft version must agree with the Forge version to get a valid artifact -minecraft_version=1.20.3 +minecraft_version=1.20.4 # The Minecraft version range can use any release version of Minecraft as bounds. # Snapshots, pre-releases, and release candidates are not guaranteed to sort properly # as they do not follow standard versioning conventions. -minecraft_version_range=[1.20.3,1.21) +minecraft_version_range=[1.20.4,1.21) # The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=49.0.2 +forge_version=49.0.11 # The Forge version range can use any version of Forge as bounds or match the loader version range forge_version_range=[0,) # The loader version range can only use the major version of Forge/FML as bounds @@ -35,7 +35,7 @@ loader_version_range=[0,) mapping_channel=official # The mapping version to query from the mapping channel. # This must match the format required by the mapping channel. -mapping_version=1.20.3 +mapping_version=1.20.4 ## Mod Properties @@ -48,7 +48,7 @@ mod_name=Nature's Compass # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=CC BY-NC-SA 4.0 # The mod version. See https://semver.org/ -mod_version=1.20.3-1.11.3-forge +mod_version=1.20.4-1.11.3-forge # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 21bdbad..7bad068 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,11 +1,11 @@ modLoader="javafml" -loaderVersion="[48,)" +loaderVersion="[49,)" issueTrackerURL="https://github.com/MattCzyr/NaturesCompass/issues" license="CC BY-NC-SA 4.0" [[mods]] modId="naturescompass" - version="1.20.3-1.11.3-forge" + version="1.20.4-1.11.3-forge" displayName="Nature's Compass" displayURL="https://github.com/MattCzyr/NaturesCompass" authors="ChaosTheDude" @@ -22,6 +22,6 @@ license="CC BY-NC-SA 4.0" [[dependencies.naturescompass]] modId="minecraft" mandatory=true - versionRange="[1.20.3,)" + versionRange="[1.20.4,)" ordering="NONE" side="BOTH"