From 98b803fb45da7dca69641257c17d5ac310e9a320 Mon Sep 17 00:00:00 2001 From: Rollczi Date: Sun, 13 Oct 2024 14:09:25 +0200 Subject: [PATCH] Release 3.7.0 --- README.md | 4 ++-- buildSrc/src/main/kotlin/litecommands-publish.gradle.kts | 2 +- examples/bukkit-adventure-platform/build.gradle.kts | 4 ++-- examples/bukkit-chatgpt/build.gradle.kts | 4 ++-- examples/bukkit/build.gradle.kts | 2 +- examples/fabric/build.gradle.kts | 2 +- examples/fabric/src/main/resources/fabric.mod.json | 2 +- examples/minestom/build.gradle.kts | 2 +- examples/velocity/build.gradle.kts | 2 +- .../src/dev/rollczi/litecommands/platform/PlatformSender.java | 2 +- litecommands-fabric/src/main/resources/fabric.mod.json | 2 +- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 716f050b7..8ee0224fa 100644 --- a/README.md +++ b/README.md @@ -86,13 +86,13 @@ maven("https://repo.panda-lang.org/releases") #### ➕ Add LiteCommands to dependencies ```kts -implementation("dev.rollczi:{artifact}:3.6.1") +implementation("dev.rollczi:{artifact}:3.7.0") ``` ```xml dev.rollczi {artifact} - 3.6.1 + 3.7.0 ``` > ⚠️ Replace `{artifact}` with [platform artifact](https://litedevelopers.github.io/LiteDevelopers-documentation/platforms.html) diff --git a/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts b/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts index 70f2bdf6e..65ce1e180 100644 --- a/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts +++ b/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "dev.rollczi" -version = "3.7.0-SNAPSHOT" +version = "3.7.0" publishing { java { diff --git a/examples/bukkit-adventure-platform/build.gradle.kts b/examples/bukkit-adventure-platform/build.gradle.kts index 1342839e5..695f1b9a0 100644 --- a/examples/bukkit-adventure-platform/build.gradle.kts +++ b/examples/bukkit-adventure-platform/build.gradle.kts @@ -16,8 +16,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.6.1") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-adventure-platform:3.6.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-adventure-platform:3.7.0") // <-- uncomment in your project implementation("net.kyori:adventure-platform-bukkit:4.3.0") implementation("net.kyori:adventure-text-minimessage:4.14.0") diff --git a/examples/bukkit-chatgpt/build.gradle.kts b/examples/bukkit-chatgpt/build.gradle.kts index 25c36e955..9db70c75a 100644 --- a/examples/bukkit-chatgpt/build.gradle.kts +++ b/examples/bukkit-chatgpt/build.gradle.kts @@ -16,8 +16,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.6.1") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-chatgpt:3.6.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-chatgpt:3.7.0") // <-- uncomment in your project implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle implementation(project(":litecommands-chatgpt")) // don't use this line in your build.gradle } diff --git a/examples/bukkit/build.gradle.kts b/examples/bukkit/build.gradle.kts index d5a363740..52c05dfa6 100644 --- a/examples/bukkit/build.gradle.kts +++ b/examples/bukkit/build.gradle.kts @@ -16,7 +16,7 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.6.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle } diff --git a/examples/fabric/build.gradle.kts b/examples/fabric/build.gradle.kts index 5c0ad974b..1bcbfd305 100644 --- a/examples/fabric/build.gradle.kts +++ b/examples/fabric/build.gradle.kts @@ -21,7 +21,7 @@ dependencies { modImplementation("net.fabricmc:fabric-loader:0.15.6") modImplementation("net.fabricmc.fabric-api:fabric-api:0.96.1+1.20.4") -// modImplementation("dev.rollczi:litecommands-fabric:3.6.1") // <-- uncomment in your project +// modImplementation("dev.rollczi:litecommands-fabric:3.7.0") // <-- uncomment in your project implementation(project(path = ":litecommands-fabric", configuration = "namedElements")) } diff --git a/examples/fabric/src/main/resources/fabric.mod.json b/examples/fabric/src/main/resources/fabric.mod.json index bd93d2589..0c260f7e4 100644 --- a/examples/fabric/src/main/resources/fabric.mod.json +++ b/examples/fabric/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "litecommands_example", - "version": "3.6.1", + "version": "3.7.0", "name": "LiteCommands Fabric Example", "description": "Annotation based command framework for Fabric.", "authors": [ diff --git a/examples/minestom/build.gradle.kts b/examples/minestom/build.gradle.kts index 2a1f665df..6c9c61693 100644 --- a/examples/minestom/build.gradle.kts +++ b/examples/minestom/build.gradle.kts @@ -18,7 +18,7 @@ dependencies { implementation("net.minestom:minestom-snapshots:4305006e6b") implementation("net.kyori:adventure-text-minimessage:4.17.0") - // implementation("dev.rollczi:litecommands-minestom:3.6.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-minestom:3.7.0") // <-- uncomment in your project implementation(project(":litecommands-minestom")) // don't use this line in your build.gradle } diff --git a/examples/velocity/build.gradle.kts b/examples/velocity/build.gradle.kts index ab6a52729..bf0c9987d 100644 --- a/examples/velocity/build.gradle.kts +++ b/examples/velocity/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { compileOnly("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT") annotationProcessor("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT") - // implementation("dev.rollczi:litecommands-velocity:3.6.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-velocity:3.7.0") // <-- uncomment in your project implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle } diff --git a/litecommands-core/src/dev/rollczi/litecommands/platform/PlatformSender.java b/litecommands-core/src/dev/rollczi/litecommands/platform/PlatformSender.java index ebc26951c..b02cd675e 100644 --- a/litecommands-core/src/dev/rollczi/litecommands/platform/PlatformSender.java +++ b/litecommands-core/src/dev/rollczi/litecommands/platform/PlatformSender.java @@ -28,7 +28,7 @@ public interface PlatformSender { * Use {@link Invocation#sender()} instead and check permissions. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "3.6.1") + @ApiStatus.ScheduledForRemoval(inVersion = "3.8.0") boolean hasPermission(String permission); T getProperty(MetaKey key); diff --git a/litecommands-fabric/src/main/resources/fabric.mod.json b/litecommands-fabric/src/main/resources/fabric.mod.json index e1df43710..777c9d3d2 100644 --- a/litecommands-fabric/src/main/resources/fabric.mod.json +++ b/litecommands-fabric/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "litecommands", - "version": "3.6.1", + "version": "3.7.0", "name": "LiteCommands", "description": "Annotation based command framework for Fabric.", "authors": [