]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Version bump, 1.26.1 of mod, 21.1.72 neoforge
authorStephen Seo <seo.disparate@gmail.com>
Tue, 22 Oct 2024 04:22:35 +0000 (13:22 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Wed, 23 Oct 2024 07:23:10 +0000 (16:23 +0900)
README.md
build.gradle
gradle.properties
src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java

index 474aa5739bcf9c7312b971e810e1d0972f7de468..50440bf5a24a08d3cc39bc720208ed0bc94a1977 100644 (file)
--- 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
 
index 68c95bba9563cae91c91383b20b2822c973a4a7d..2d0498720ca724e454d64866b9845e725ff93f4b 100644 (file)
@@ -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 {
index 179d8687ba9d436b03e363424de75c8dd427cce5..15a4d9bcc4f189c21fd4ce94b9831aa4d712448d 100644 (file)
@@ -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
index 135e3b0ee7f3192661743d4b5b28712dd6ec9d64..3856b227654a65e13e118b8a96a43be81f3d37e9 100644 (file)
@@ -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/";