diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac30d02..51ba4ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: release_name: Release ${{ github.ref }} body: | Changes in this Release - - Chunk grid tool support + - Live scripting support draft: false prerelease: false - name: Upload jars to release diff --git a/README.md b/README.md index d2fd05b..1490369 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Forge mod providing useful utilities when automating to the extreme. - Adds a block which shows how often per second it is ticked - Adds a minimap like chunk view, similar to CarpetClient +- Allows you to run java code on your server or client while in-game - Allows you to view the decompiled classes of Blocks, Tile Entities and more while you're in-game. - Allows you to search for method and field references in every loaded class (e.g. find every block that accelerates tile entities) diff --git a/build.gradle b/build.gradle index 530f2ca..8fa4e2b 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'com.github.johnrengelman.shadow' group = 'com.github.minecraft_ta' -version = '1.5.0' +version = '1.6.0' archivesBaseName = 'TotalDebug' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' diff --git a/src/main/java/com/github/minecraft_ta/totaldebug/TotalDebug.java b/src/main/java/com/github/minecraft_ta/totaldebug/TotalDebug.java index 84d1087..b35ac49 100644 --- a/src/main/java/com/github/minecraft_ta/totaldebug/TotalDebug.java +++ b/src/main/java/com/github/minecraft_ta/totaldebug/TotalDebug.java @@ -32,7 +32,7 @@ public class TotalDebug { public static final String MOD_ID = "total_debug"; public static final String MOD_NAME = "TotalDebug"; - public static final String VERSION = "1.5.0"; + public static final String VERSION = "1.6.0"; @Mod.Instance(MOD_ID) public static TotalDebug INSTANCE;