diff --git a/README.md b/README.md index fec819644..48476505b 100644 --- a/README.md +++ b/README.md @@ -79,13 +79,13 @@ maven("https://repo.panda-lang.org/releases") #### ➕ Add LiteCommands to dependencies ```kts -implementation("dev.rollczi:{artifact}:3.3.3") +implementation("dev.rollczi:{artifact}:3.3.4") ``` ```xml dev.rollczi {artifact} - 3.3.3 + 3.3.4 ``` > ⚠️ 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 dade2babd..0c1030827 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.3.4-SNAPSHOT" +version = "3.3.4" java { withSourcesJar() diff --git a/examples/bukkit-adventure-platform/build.gradle.kts b/examples/bukkit-adventure-platform/build.gradle.kts index fccc2f691..a6f2b92de 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.3.3") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-adventure-platform:3.3.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.3.4") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-adventure-platform:3.3.4") // <-- 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 bbf59d9ba..81f526f50 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.3.3") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-chatgpt:3.3.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.3.4") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-chatgpt:3.3.4") // <-- 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 a01202af2..8d94cc248 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.3.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.3.4") // <-- uncomment in your project implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle } diff --git a/examples/minestom/build.gradle.kts b/examples/minestom/build.gradle.kts index 2ce04f192..2a2733bd5 100644 --- a/examples/minestom/build.gradle.kts +++ b/examples/minestom/build.gradle.kts @@ -18,7 +18,7 @@ dependencies { implementation("dev.hollowcube:minestom-ce:5347c0b11f") implementation("net.kyori:adventure-text-minimessage:4.15.0") - // implementation("dev.rollczi:litecommands-minestom:3.3.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-minestom:3.3.4") // <-- 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 cd769412d..dc8328cff 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.3.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-velocity:3.3.4") // <-- uncomment in your project implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle }