From 52458bbfc5a7cb3824234977ae5ed17f7cb64eb2 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 22 Oct 2024 13:22:35 +0900 Subject: [PATCH] Version bump, 1.26.1 of mod, 21.1.72 neoforge --- README.md | 2 +- build.gradle | 2 +- gradle.properties | 4 ++-- .../TurnBasedMinecraft/common/TurnBasedMinecraftMod.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 474aa57..50440bf 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ configured for them.) Simply invoke `./gradlew build` in the mod directory and after some time the finished jar will be saved at -`build/libs/TurnBasedMinecraft-NeoForge-1.26.0-all.jar` +`build/libs/TurnBasedMinecraft-NeoForge-1.26.1-all.jar` # Reproducibility diff --git a/build.gradle b/build.gradle index 68c95bb..2d04987 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ plugins { id 'java-library' id 'maven-publish' - id 'net.neoforged.moddev' version '1.0.20' + id 'net.neoforged.moddev' version '1.0.21' } tasks.named('wrapper', Wrapper).configure { diff --git a/gradle.properties b/gradle.properties index 179d868..15a4d9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,7 +21,7 @@ minecraft_version=1.21.1 minecraft_version_range=[1.21.1, 1.22) # The Neo version must agree with the Minecraft version to get a valid artifact -neo_version=21.1.69 +neo_version=21.1.72 # The Neo version range can use any version of Neo as bounds neo_version_range=[21.1.0,) # The loader version range can only use the major version of FML as bounds @@ -37,7 +37,7 @@ mod_name=TurnBasedMinecraftMod # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=MIT # The mod version. See https://semver.org/ -mod_version=1.26.0 +mod_version=1.26.1 # 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/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java index 135e3b0..3856b22 100644 --- a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java +++ b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java @@ -42,7 +42,7 @@ import org.apache.logging.log4j.Logger; public class TurnBasedMinecraftMod { public static final String MODID = "com_burnedkirby_turnbasedminecraft"; public static final String NAME = "Turn Based Minecraft Mod"; - public static final String VERSION = "1.26.0"; + public static final String VERSION = "1.26.1"; public static final String CONFIG_FILENAME = "TBM_Config.toml"; public static final String DEFAULT_CONFIG_FILENAME = "TBM_Config_DEFAULT.toml"; public static final String CONFIG_DIRECTORY = "config/TurnBasedMinecraft/";