From 77d5c4098268d40923ce937d9c336ec69ffc6b93 Mon Sep 17 00:00:00 2001 From: Rollczi Date: Mon, 6 Jan 2025 16:09:50 +0100 Subject: [PATCH] Release 3.9.7 --- README.md | 4 ++-- buildSrc/src/main/kotlin/litecommands-publish.gradle.kts | 2 +- examples/bukkit-adventure-platform/build.gradle.kts | 6 +++--- examples/bukkit-chatgpt/build.gradle.kts | 6 +++--- examples/bukkit/build.gradle.kts | 4 ++-- examples/fabric/build.gradle.kts | 2 +- examples/fabric/src/main/resources/fabric.mod.json | 2 +- examples/jda/build.gradle.kts | 4 ++-- examples/minestom/build.gradle.kts | 2 +- examples/velocity/build.gradle.kts | 2 +- .../java/dev/rollczi/example/velocity/ExamplePlugin.java | 2 +- litecommands-fabric/src/main/resources/fabric.mod.json | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 074fb863..5a5d231b 100644 --- a/README.md +++ b/README.md @@ -89,13 +89,13 @@ maven("https://repo.panda-lang.org/releases") #### ➕ Add LiteCommands to dependencies ```kts -implementation("dev.rollczi:{artifact}:3.9.6") +implementation("dev.rollczi:{artifact}:3.9.7") ``` ```xml dev.rollczi {artifact} - 3.9.6 + 3.9.7 ``` > ⚠️ Replace `{artifact}` with [platform artifact](https://docs.rollczi.dev/documentation/litecommands/platforms.html#supported-platforms) diff --git a/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts b/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts index 58876b44..d734ee8c 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.9.7-SNAPSHOT" +version = "3.9.7" publishing { java { diff --git a/examples/bukkit-adventure-platform/build.gradle.kts b/examples/bukkit-adventure-platform/build.gradle.kts index e8ee9bec..62cea464 100644 --- a/examples/bukkit-adventure-platform/build.gradle.kts +++ b/examples/bukkit-adventure-platform/build.gradle.kts @@ -5,7 +5,7 @@ plugins { id("xyz.jpenilla.run-paper") version "2.3.1" } -version = "3.9.6" +version = "3.9.7" repositories { mavenCentral() @@ -16,8 +16,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-adventure-platform:3.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-adventure-platform:3.9.7") // <-- 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 7797fbc7..b3897542 100644 --- a/examples/bukkit-chatgpt/build.gradle.kts +++ b/examples/bukkit-chatgpt/build.gradle.kts @@ -5,7 +5,7 @@ plugins { id("xyz.jpenilla.run-paper") version "2.3.1" } -version = "3.9.6" +version = "3.9.7" repositories { mavenCentral() @@ -16,8 +16,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-chatgpt:3.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-chatgpt:3.9.7") // <-- 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 b6521f27..b1ef196a 100644 --- a/examples/bukkit/build.gradle.kts +++ b/examples/bukkit/build.gradle.kts @@ -5,7 +5,7 @@ plugins { id("xyz.jpenilla.run-paper") version "2.3.1" } -version = "3.9.6" +version = "3.9.7" repositories { mavenCentral() @@ -16,7 +16,7 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- 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 7cc2e6d9..533eef59 100644 --- a/examples/fabric/build.gradle.kts +++ b/examples/fabric/build.gradle.kts @@ -21,7 +21,7 @@ dependencies { modImplementation("net.fabricmc:fabric-loader:0.16.7") modImplementation("net.fabricmc.fabric-api:fabric-api:0.106.0+1.21.1") -// modImplementation("dev.rollczi:litecommands-fabric:3.9.6") // <-- uncomment in your project +// modImplementation("dev.rollczi:litecommands-fabric:3.9.7") // <-- 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 b8d7e412..6ec29eca 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.9.6", + "version": "3.9.7", "name": "LiteCommands Fabric Example", "description": "Annotation based command framework for Fabric.", "authors": [ diff --git a/examples/jda/build.gradle.kts b/examples/jda/build.gradle.kts index decac92e..55ccec56 100644 --- a/examples/jda/build.gradle.kts +++ b/examples/jda/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "dev.rollczi" -version = "3.9.6" +version = "3.9.7" repositories { mavenCentral() @@ -14,7 +14,7 @@ repositories { } dependencies { - // implementation("dev.rollczi:litecommands-jda:3.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-jda:3.9.7") // <-- uncomment in your project implementation(project(":litecommands-jda")) // don't use this line in your build.gradle implementation("net.dv8tion:JDA:5.2.2") diff --git a/examples/minestom/build.gradle.kts b/examples/minestom/build.gradle.kts index 60a96ac8..bd065da2 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.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-minestom:3.9.7") // <-- 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 a9d27c37..e41c6410 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.9.6") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-velocity:3.9.7") // <-- uncomment in your project implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle } diff --git a/examples/velocity/src/main/java/dev/rollczi/example/velocity/ExamplePlugin.java b/examples/velocity/src/main/java/dev/rollczi/example/velocity/ExamplePlugin.java index a1571405..e3538a9e 100644 --- a/examples/velocity/src/main/java/dev/rollczi/example/velocity/ExamplePlugin.java +++ b/examples/velocity/src/main/java/dev/rollczi/example/velocity/ExamplePlugin.java @@ -22,7 +22,7 @@ import dev.rollczi.litecommands.velocity.LiteVelocityFactory; import dev.rollczi.litecommands.velocity.tools.VelocityOnlyPlayerContextual; -@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "3.9.6", authors = "Rollczi") +@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "3.9.7", authors = "Rollczi") public class ExamplePlugin { private final ProxyServer proxyServer; diff --git a/litecommands-fabric/src/main/resources/fabric.mod.json b/litecommands-fabric/src/main/resources/fabric.mod.json index c1ecff07..f2768100 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.9.6", + "version": "3.9.7", "name": "LiteCommands", "description": "Annotation based command framework for Fabric.", "authors": [