From f8292e8daa0043d4b8ce13e72e9ccb71546de668 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 3 May 2022 21:27:55 -0500 Subject: [PATCH] Set the api version to 0.0 (since it hasn't been released yet) --- src/main/java/com/seibel/lod/core/ModInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/ModInfo.java b/src/main/java/com/seibel/lod/core/ModInfo.java index cfaf60b1a..3b49beee5 100644 --- a/src/main/java/com/seibel/lod/core/ModInfo.java +++ b/src/main/java/com/seibel/lod/core/ModInfo.java @@ -47,9 +47,9 @@ 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 = 1; + public static final int API_MAJOR_VERSION = 0; /** 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; }