From 11e58eecdaa6b64d990f9d62d9e7886f6bcda6fe Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sun, 15 Sep 2024 20:36:10 -0500 Subject: [PATCH] Up API version 3.0.1 -> 4.0.0 --- .../main/java/com/seibel/distanthorizons/coreapi/ModInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java b/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java index 72460813e..1e54f68ab 100644 --- a/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java +++ b/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java @@ -43,11 +43,11 @@ public final class ModInfo public static boolean IS_DEV_BUILD = VERSION.toLowerCase().contains("dev"); /** This version should only be updated when breaking changes are introduced to the DH API */ - public static final int API_MAJOR_VERSION = 3; + public static final int API_MAJOR_VERSION = 4; /** This version should be updated whenever new methods are added to the DH API */ public static final int API_MINOR_VERSION = 0; /** This version should be updated whenever non-breaking fixes are added to the DH API */ - public static final int API_PATCH_VERSION = 1; + public static final int API_PATCH_VERSION = 0; /** All DH owned threads should start with this string to allow for easier debugging and profiling. */ public static final String THREAD_NAME_PREFIX = "DH-";