From d57a75d3b21709769f844ad6b23faf3722f8f801 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Wed, 17 Jan 2024 14:17:03 +0900 Subject: [PATCH] Bump version to 1.25.2 --- Changelog.md | 9 +++++++++ README.md | 2 +- gradle.properties | 2 +- .../TurnBasedMinecraft/common/TurnBasedMinecraftMod.java | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index e6490ba..23ddcbf 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,14 @@ # Upcoming changes +# Version Forge-1.25.2 + +Fix invalid use of throwable potions. (Previously, the Player would "drink" +splash/lingering potions when used.) Now, if a splash/lingering potion is +"Use"d in battle, it will be thrown. + +Add experimental support for "right-click" of arbitrary items on hotbar when +"Use" is used in battle. + # Version Forge-1.25.1 Add icon for mod in Mod list description. diff --git a/README.md b/README.md index 81a677c..6cd0563 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,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.25.1-all.jar` +`build/libs/TurnBasedMinecraft-Forge-1.25.2-all.jar` # Reproducibility diff --git a/gradle.properties b/gradle.properties index 43dccc0..efaa773 100644 --- a/gradle.properties +++ b/gradle.properties @@ -44,7 +44,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.25.1 +mod_version=1.25.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 360e3d3..96e065f 100644 --- a/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java +++ b/src/main/java/com/burnedkirby/TurnBasedMinecraft/common/TurnBasedMinecraftMod.java @@ -37,7 +37,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.25.1"; + public static final String VERSION = "1.25.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/"; -- 2.49.0