diff --git a/api/src/main/java/com/seibel/distanthorizons/api/DhApi.java b/api/src/main/java/com/seibel/distanthorizons/api/DhApi.java index 79f67940b..0083fd76a 100644 --- a/api/src/main/java/com/seibel/distanthorizons/api/DhApi.java +++ b/api/src/main/java/com/seibel/distanthorizons/api/DhApi.java @@ -180,7 +180,7 @@ public class DhApi * This version should be updated whenever non-breaking fixes are added to the Distant Horizons API. * @since API 1.0.0 */ - public static int getApiPatchVersion() { return ModInfo.API_PATH_VERSION; } + public static int getApiPatchVersion() { return ModInfo.API_PATCH_VERSION; } /** * Returns the mod's semantic version number in the format: Major.Minor.Patch 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 3b5d76bd4..9c7e92513 100644 --- a/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java +++ b/api/src/main/java/com/seibel/distanthorizons/coreapi/ModInfo.java @@ -34,7 +34,7 @@ public final class ModInfo public static final String NAME = "DistantHorizons"; /** Human-readable version of NAME */ public static final String READABLE_NAME = "Distant Horizons"; - public static final String VERSION = "2.2.1-a-dev"; + public static final String VERSION = "2.2.1-a"; /** Returns true if the current build is an unstable developer build, false otherwise. */ public static boolean IS_DEV_BUILD = VERSION.toLowerCase().contains("dev"); @@ -43,7 +43,7 @@ public final class ModInfo /** 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_PATH_VERSION = 0; + public static final int API_PATCH_VERSION = 1; public static final String NETWORKING_RESOURCE_NAMESPACE = "distant_horizons"; public static final String MULTIVERSE_PLUGIN_NAMESPACE = "world_control";