From d1f0325f875911056d3f12f02d7e1346042750f0 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 15 May 2026 21:41:09 -0500 Subject: [PATCH] up api version 6.1.1 -> 7.0.0 --- .../java/com/seibel/distanthorizons/coreapi/ModInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 9bd7f91c4..93fc2b000 100644 --- a/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java +++ b/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java @@ -48,11 +48,11 @@ 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 = 6; + public static final int API_MAJOR_VERSION = 7; /** 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 = 1; + public static final int API_PATCH_VERSION = 0; /** If the config file has an older version it'll be re-created from scratch. */ public static final int CONFIG_FILE_VERSION = 4;