From b0624c871419adbb6de806edb7bcf2b4ef3cae05 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 3 Feb 2026 07:05:50 -0600 Subject: [PATCH] up the api version 5.1.0 -> 6.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 547c2388f..352bd2b96 100644 --- a/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java +++ b/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java @@ -43,9 +43,9 @@ public final class ModInfo public static final 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 = 5; + public static final int API_MAJOR_VERSION = 6; /** This version should be updated whenever new methods are added to the DH API */ - public static final int API_MINOR_VERSION = 1; + 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 = 0;