diff --git a/README.md b/README.md index 21a6bee..48e9e68 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ repositories { Then depend on the Forge Mod API. This will automatically pull in dependencies too. ```kotlin -val version = "1.0.2" +val version = "1.0.2.1" dependencies { modImplementation("net.hypixel:mod-api-forge:$version") // If you use ForgeGradle 2 you might need to use fg.deobf or deobfCompile instead. Consult your MDK for tips on how @@ -77,4 +77,4 @@ If IntelliJ still shows unknown symbol errors after running the command, you may ### Testing Your Changes -You can enable DevAuth to log in to the Hypixel server with your Minecraft account. Please see the [DevAuth docs](https://github.com/DJtheRedstoner/DevAuth) for more details. \ No newline at end of file +You can enable DevAuth to log in to the Hypixel server with your Minecraft account. Please see the [DevAuth docs](https://github.com/DJtheRedstoner/DevAuth) for more details. diff --git a/build.gradle b/build.gradle index c9234de..4d3373c 100755 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ buildscript { apply plugin: 'net.minecraftforge.gradle.forge' allprojects { apply plugin: 'maven-publish' - version = "1.0.2" // First 3 numbers should correspond to the version of the API, last number is for the mod itself for any changes/fixes + version = "1.0.2.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" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "HypixelModAPI"