From f057a1c3701a9e82a1c5a8309ab576191e2bbb88 Mon Sep 17 00:00:00 2001 From: Rollczi Date: Fri, 22 Dec 2023 02:29:33 +0100 Subject: [PATCH] Release 3.2.1 --- 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/velocity/build.gradle.kts | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3cbe6572..d447fa9f 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ maven("https://repo.panda-lang.org/releases") ### Dependency ```kts -implementation("dev.rollczi:{artifact}:3.2.0") +implementation("dev.rollczi:{artifact}:3.2.1") ``` ```xml dev.rollczi {artifact} - 3.2.0 + 3.2.1 ``` `{artifact}` replace with [platform artifact](https://github.com/Rollczi/LiteCommands#platform-artifacts) diff --git a/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts b/buildSrc/src/main/kotlin/litecommands-publish.gradle.kts index 36c2ecc3..d94836ef 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.2.1-SNAPSHOT" +version = "3.2.1" java { withSourcesJar() diff --git a/examples/bukkit-adventure-platform/build.gradle.kts b/examples/bukkit-adventure-platform/build.gradle.kts index 176a97d2..4ed2323f 100644 --- a/examples/bukkit-adventure-platform/build.gradle.kts +++ b/examples/bukkit-adventure-platform/build.gradle.kts @@ -18,8 +18,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.2.0") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-adventure-platform:3.2.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.2.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-adventure-platform:3.2.1") // <-- 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 b3e6f282..79b8aa47 100644 --- a/examples/bukkit-chatgpt/build.gradle.kts +++ b/examples/bukkit-chatgpt/build.gradle.kts @@ -18,8 +18,8 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.2.0") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-chatgpt:3.2.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.2.1") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-chatgpt:3.2.1") // <-- 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 1212f847..a780010c 100644 --- a/examples/bukkit/build.gradle.kts +++ b/examples/bukkit/build.gradle.kts @@ -18,7 +18,7 @@ repositories { dependencies { compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT") - // implementation("dev.rollczi:litecommands-bukkit:3.2.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.2.1") // <-- uncomment in your project implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle } diff --git a/examples/velocity/build.gradle.kts b/examples/velocity/build.gradle.kts index f20681fd..81627c5f 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.2.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-velocity:3.2.1") // <-- uncomment in your project implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle }