Skip to content

Commit 77d5c40

Browse files
committed
Release 3.9.7
1 parent 86f559e commit 77d5c40

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

README.md

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

9090
#### ➕ Add LiteCommands to dependencies
9191
```kts
92-
implementation("dev.rollczi:{artifact}:3.9.6")
92+
implementation("dev.rollczi:{artifact}:3.9.7")
9393
```
9494
```xml
9595
<dependency>
9696
<groupId>dev.rollczi</groupId>
9797
<artifactId>{artifact}</artifactId>
98-
<version>3.9.6</version>
98+
<version>3.9.7</version>
9999
</dependency>
100100
```
101101
> ⚠️ Replace `{artifact}` with [platform artifact](https://docs.rollczi.dev/documentation/litecommands/platforms.html#supported-platforms)

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.9.7-SNAPSHOT"
7+
version = "3.9.7"
88

99
publishing {
1010
java {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.9.6"
8+
version = "3.9.7"
99

1010
repositories {
1111
mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project
20-
// implementation("dev.rollczi:litecommands-adventure-platform:3.9.6") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- uncomment in your project
20+
// implementation("dev.rollczi:litecommands-adventure-platform:3.9.7") // <-- uncomment in your project
2121
implementation("net.kyori:adventure-platform-bukkit:4.3.0")
2222
implementation("net.kyori:adventure-text-minimessage:4.14.0")
2323

examples/bukkit-chatgpt/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.9.6"
8+
version = "3.9.7"
99

1010
repositories {
1111
mavenCentral()
@@ -16,8 +16,8 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project
20-
// implementation("dev.rollczi:litecommands-chatgpt:3.9.6") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- uncomment in your project
20+
// implementation("dev.rollczi:litecommands-chatgpt:3.9.7") // <-- uncomment in your project
2121
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2222
implementation(project(":litecommands-chatgpt")) // don't use this line in your build.gradle
2323
}

examples/bukkit/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("xyz.jpenilla.run-paper") version "2.3.1"
66
}
77

8-
version = "3.9.6"
8+
version = "3.9.7"
99

1010
repositories {
1111
mavenCentral()
@@ -16,7 +16,7 @@ repositories {
1616
dependencies {
1717
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
1818

19-
// implementation("dev.rollczi:litecommands-bukkit:3.9.6") // <-- uncomment in your project
19+
// implementation("dev.rollczi:litecommands-bukkit:3.9.7") // <-- uncomment in your project
2020
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
2121
}
2222

examples/fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
modImplementation("net.fabricmc:fabric-loader:0.16.7")
2222
modImplementation("net.fabricmc.fabric-api:fabric-api:0.106.0+1.21.1")
2323

24-
// modImplementation("dev.rollczi:litecommands-fabric:3.9.6") // <-- uncomment in your project
24+
// modImplementation("dev.rollczi:litecommands-fabric:3.9.7") // <-- uncomment in your project
2525
implementation(project(path = ":litecommands-fabric", configuration = "namedElements"))
2626

2727
}

examples/fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "litecommands_example",
4-
"version": "3.9.6",
4+
"version": "3.9.7",
55
"name": "LiteCommands Fabric Example",
66
"description": "Annotation based command framework for Fabric.",
77
"authors": [

examples/jda/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "dev.rollczi"
8-
version = "3.9.6"
8+
version = "3.9.7"
99

1010
repositories {
1111
mavenCentral()
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

1616
dependencies {
17-
// implementation("dev.rollczi:litecommands-jda:3.9.6") // <-- uncomment in your project
17+
// implementation("dev.rollczi:litecommands-jda:3.9.7") // <-- uncomment in your project
1818
implementation(project(":litecommands-jda")) // don't use this line in your build.gradle
1919

2020
implementation("net.dv8tion:JDA:5.2.2")

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("net.minestom:minestom-snapshots:4305006e6b")
1919
implementation("net.kyori:adventure-text-minimessage:4.17.0")
2020

21-
// implementation("dev.rollczi:litecommands-minestom:3.9.6") // <-- uncomment in your project
21+
// implementation("dev.rollczi:litecommands-minestom:3.9.7") // <-- 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.9.6") // <-- uncomment in your project
22+
// implementation("dev.rollczi:litecommands-velocity:3.9.7") // <-- uncomment in your project
2323
implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle
2424
}
2525

examples/velocity/src/main/java/dev/rollczi/example/velocity/ExamplePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import dev.rollczi.litecommands.velocity.LiteVelocityFactory;
2323
import dev.rollczi.litecommands.velocity.tools.VelocityOnlyPlayerContextual;
2424

25-
@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "3.9.6", authors = "Rollczi")
25+
@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "3.9.7", authors = "Rollczi")
2626
public class ExamplePlugin {
2727

2828
private final ProxyServer proxyServer;

litecommands-fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": 1,
33
"id": "litecommands",
4-
"version": "3.9.6",
4+
"version": "3.9.7",
55
"name": "LiteCommands",
66
"description": "Annotation based command framework for Fabric.",
77
"authors": [

0 commit comments

Comments
 (0)