From 36b6673d699488236cab78d0d14ff377483d79a8 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Thu, 24 Oct 2024 20:21:37 +0900 Subject: [PATCH] Bump version to 1.26.2 --- README.md | 2 +- gradle.properties | 2 +- .../TurnBasedMinecraft/common/TurnBasedMinecraftMod.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6a06f59..ddea299 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,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-Forge-1.26.1-all.jar` +`build/libs/TurnBasedMinecraft-Forge-1.26.2-all.jar` # Reproducibility diff --git a/gradle.properties b/gradle.properties index 2ed6b7d..310cd91 100644 --- a/gradle.properties +++ b/gradle.properties @@ -48,7 +48,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.1 +mod_version=1.26.2 # 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 71e0539..d1afe65 100644 --- a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java +++ b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java @@ -39,7 +39,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.1"; + public static final String VERSION = "1.26.2"; 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/";