diff --git a/.github/README.md b/.github/README.md index 0ab1563ce..1f00691d4 100644 --- a/.github/README.md +++ b/.github/README.md @@ -28,13 +28,13 @@ maven("https://repo.panda-lang.org/releases") ### Dependency ```kts - implementation("dev.rollczi:{artifact}:3.0.3") + implementation("dev.rollczi:{artifact}:3.1.0") ``` ```xml dev.rollczi {artifact} - 3.0.3 + 3.1.0 ``` `{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 78f82ae75..a0241b62b 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.1.0-SNAPSHOT" +version = "3.1.0" java { withSourcesJar() diff --git a/examples/bukkit-adventure-platform/build.gradle.kts b/examples/bukkit-adventure-platform/build.gradle.kts index 2a9377420..6f56a4d77 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.0.3") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-adventure-platform:3.0.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.1.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-adventure-platform:3.1.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 a2d6ff66d..7bb46e967 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.0.3") // <-- uncomment in your project - // implementation("dev.rollczi:litecommands-chatgpt:3.0.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.1.0") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-chatgpt:3.1.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 16ccd2147..bb11f0942 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.0.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-bukkit:3.1.0") // <-- 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 a035445ef..d4f392acb 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.0.3") // <-- uncomment in your project + // implementation("dev.rollczi:litecommands-velocity:3.1.0") // <-- uncomment in your project implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle }