Skip to content

Commit 6b273b9

Browse files
committed
Release 3.3.2
1 parent fc9d609 commit 6b273b9

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ maven("https://repo.panda-lang.org/releases")
7979

8080
#### ➕ Add LiteCommands to dependencies
8181
```kts
82-
implementation("dev.rollczi:{artifact}:3.3.1")
82+
implementation("dev.rollczi:{artifact}:3.3.2")
8383
```
8484
```xml
8585
<dependency>
8686
<groupId>dev.rollczi</groupId>
8787
<artifactId>{artifact}</artifactId>
88-
<version>3.3.1</version>
88+
<version>3.3.2</version>
8989
</dependency>
9090
```
9191
> ⚠️ Replace `{artifact}` with [platform artifact](https://litedevelopers.github.io/LiteDevelopers-documentation/platforms.html)

buildSrc/src/main/kotlin/litecommands-publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "dev.rollczi"
7-
version = "3.3.2-SNAPSHOT"
7+
version = "3.3.2"
88

99
java {
1010
withSourcesJar()

examples/bukkit-adventure-platform/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ repositories {
1818
dependencies {
1919
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
2020

21-
// implementation("dev.rollczi:litecommands-bukkit:3.3.1") // <-- uncomment in your project
22-
// implementation("dev.rollczi:litecommands-adventure-platform:3.3.1") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-bukkit:3.3.2") // <-- uncomment in your project
22+
// implementation("dev.rollczi:litecommands-adventure-platform:3.3.2") // <-- uncomment in your project
2323
implementation("net.kyori:adventure-platform-bukkit:4.3.0")
2424
implementation("net.kyori:adventure-text-minimessage:4.14.0")
2525

examples/bukkit-chatgpt/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ repositories {
1818
dependencies {
1919
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
2020

21-
// implementation("dev.rollczi:litecommands-bukkit:3.3.1") // <-- uncomment in your project
22-
// implementation("dev.rollczi:litecommands-chatgpt:3.3.1") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-bukkit:3.3.2") // <-- uncomment in your project
22+
// implementation("dev.rollczi:litecommands-chatgpt:3.3.2") // <-- uncomment in your project
2323
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2424
implementation(project(":litecommands-chatgpt")) // don't use this line in your build.gradle
2525
}

examples/bukkit/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
dependencies {
1919
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
2020

21-
// implementation("dev.rollczi:litecommands-bukkit:3.3.1") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-bukkit:3.3.2") // <-- uncomment in your project
2222
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2323
}
2424

examples/minestom/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
implementation("dev.hollowcube:minestom-ce:5347c0b11f")
1919
implementation("net.kyori:adventure-text-minimessage:4.15.0")
2020

21-
// implementation("dev.rollczi:litecommands-minestom:3.3.1") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-minestom:3.3.2") // <-- uncomment in your project
2222
implementation(project(":litecommands-minestom")) // don't use this line in your build.gradle
2323
}
2424

examples/velocity/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
compileOnly("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
2020
annotationProcessor("com.velocitypowered:velocity-api:3.2.0-SNAPSHOT")
2121

22-
// implementation("dev.rollczi:litecommands-velocity:3.3.1") // <-- uncomment in your project
22+
// implementation("dev.rollczi:litecommands-velocity:3.3.2") // <-- uncomment in your project
2323
implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle
2424
}
2525

0 commit comments

Comments
 (0)