From 317f7d40edeecf1e0586bc0b33d0c31c642fad33 Mon Sep 17 00:00:00 2001 From: Matthew Czyr Date: Thu, 5 Sep 2024 19:47:01 -0400 Subject: [PATCH] Update to Forge 1.21.1 --- CHANGELOG.md | 9 ++++++--- gradle.properties | 10 +++++----- src/main/resources/META-INF/mods.toml | 8 ++++---- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 446a154..59cf3d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ ## Version 3.0.3 -#### NeoForge 1.21 +#### NeoForge 1.21.1, 1.21 +- Updated to NeoForge 1.21.1 - Fixed uncraftable Nature's Compass recipe ## Version 2.2.6 -#### Fabric 1.21 +#### Fabric 1.21.1, 1.21 +- Updated to Fabric 1.21.1 - Fixed uncraftable Nature's Compass recipe ## Version 1.11.7 -#### Forge 1.21 +#### Forge 1.21.1, 1.21 +- Updated to Forge 1.21.1 - Fixed uncraftable Nature's Compass recipe ## Version 3.0.2 diff --git a/gradle.properties b/gradle.properties index 08769a3..8775c2d 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.21 +minecraft_version=1.21.1 # 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.21,1.22) +minecraft_version_range=[1.21.1,1.22) # The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=51.0.16 +forge_version=52.0.4 # 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.21 +mapping_version=1.21.1 ## 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.21-1.11.7-forge +mod_version=1.21.1-1.11.7-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 8450c1d..85b26dc 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,11 +1,11 @@ modLoader="javafml" -loaderVersion="[51,)" +loaderVersion="[52,)" issueTrackerURL="https://github.com/MattCzyr/NaturesCompass/issues" license="CC BY-NC-SA 4.0" [[mods]] modId="naturescompass" - version="1.21-1.11.7-forge" + version="1.21.1-1.11.7-forge" displayName="Nature's Compass" displayURL="https://github.com/MattCzyr/NaturesCompass" authors="ChaosTheDude" @@ -16,12 +16,12 @@ license="CC BY-NC-SA 4.0" [[dependencies.naturescompass]] modId="forge" mandatory=true - versionRange="[51,)" + versionRange="[52,)" ordering="NONE" side="BOTH" [[dependencies.naturescompass]] modId="minecraft" mandatory=true - versionRange="[1.21,)" + versionRange="[1.21.1,)" ordering="NONE" side="BOTH"