From 3a60715b57d9af5ad63d20465504214979a7c85d Mon Sep 17 00:00:00 2001 From: Connor Linfoot Date: Mon, 8 Jul 2024 12:33:10 +0100 Subject: Update to Mod API 1.0 --- build.gradle | 4 ++-- src/main/java/net/hypixel/modapi/forge/ForgeModAPI.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 98e707e..b6ba6fd 100755 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ buildscript { } apply plugin: 'net.minecraftforge.gradle.forge' -version = "0.5.0" +version = "1.0.0.1" // First 3 numbers should correspond to the version of the API, last number is for the mod itself for any changes/fixes group = "net.hypixel.modapi" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "HypixelModAPI" sourceCompatibility = 1.8 @@ -39,7 +39,7 @@ configurations { } dependencies { - shade "net.hypixel:mod-api:0.5.0" + shade "net.hypixel:mod-api:1.0" } jar { diff --git a/src/main/java/net/hypixel/modapi/forge/ForgeModAPI.java b/src/main/java/net/hypixel/modapi/forge/ForgeModAPI.java index 6795d9f..c7c31c2 100644 --- a/src/main/java/net/hypixel/modapi/forge/ForgeModAPI.java +++ b/src/main/java/net/hypixel/modapi/forge/ForgeModAPI.java @@ -26,7 +26,7 @@ import java.util.logging.Logger; @Mod(modid = ForgeModAPI.MODID, version = ForgeModAPI.VERSION, clientSideOnly = true, name = "Hypixel Mod API") public class ForgeModAPI { public static final String MODID = "hypixel_mod_api"; - public static final String VERSION = "0.5.0"; + public static final String VERSION = "1.0.0.1"; private static final Logger LOGGER = Logger.getLogger("HypixelModAPI"); // We store a local reference to the net handler, so it's instantly available from the moment we connect -- cgit