Skip to content

Commit

Permalink
Release 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rollczi committed Oct 18, 2024
1 parent 4ea68bc commit d1a7a4d
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ maven("https://repo.panda-lang.org/releases")

#### ➕ Add LiteCommands to dependencies
```kts
implementation("dev.rollczi:{artifact}:3.7.0")
implementation("dev.rollczi:{artifact}:3.7.1")
```
```xml
<dependency>
<groupId>dev.rollczi</groupId>
<artifactId>{artifact}</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>
```
> ⚠️ Replace `{artifact}` with [platform artifact](https://docs.rollczi.dev/documentation/litecommands/platforms.html#supported-platforms)
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/litecommands-publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "dev.rollczi"
version = "3.7.0"
version = "3.7.1"

publishing {
java {
Expand Down
6 changes: 3 additions & 3 deletions examples/bukkit-adventure-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("xyz.jpenilla.run-paper") version "2.3.0"
}

version = "1.0.0-SNAPSHOT"
version = "3.7.1-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -16,8 +16,8 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-adventure-platform:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-bukkit:3.7.1") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-adventure-platform:3.7.1") // <-- uncomment in your project
implementation("net.kyori:adventure-platform-bukkit:4.3.0")
implementation("net.kyori:adventure-text-minimessage:4.14.0")

Expand Down
6 changes: 3 additions & 3 deletions examples/bukkit-chatgpt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("xyz.jpenilla.run-paper") version "2.3.0"
}

version = "1.0.0-SNAPSHOT"
version = "3.7.1-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -16,8 +16,8 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-chatgpt:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-bukkit:3.7.1") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-chatgpt:3.7.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
}
Expand Down
4 changes: 2 additions & 2 deletions examples/bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("xyz.jpenilla.run-paper") version "2.3.0"
}

version = "1.0.0-SNAPSHOT"
version = "3.7.1-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -16,7 +16,7 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// implementation("dev.rollczi:litecommands-bukkit:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-bukkit:3.7.1") // <-- uncomment in your project
implementation(project(":litecommands-bukkit")) // don't use this line in your build.gradle
}

Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
modImplementation("net.fabricmc:fabric-loader:0.15.6")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.96.1+1.20.4")

// modImplementation("dev.rollczi:litecommands-fabric:3.7.0") // <-- uncomment in your project
// modImplementation("dev.rollczi:litecommands-fabric:3.7.1") // <-- uncomment in your project
implementation(project(path = ":litecommands-fabric", configuration = "namedElements"))

}
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "litecommands_example",
"version": "3.7.0",
"version": "3.7.1",
"name": "LiteCommands Fabric Example",
"description": "Annotation based command framework for Fabric.",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion examples/minestom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
implementation("net.minestom:minestom-snapshots:4305006e6b")
implementation("net.kyori:adventure-text-minimessage:4.17.0")

// implementation("dev.rollczi:litecommands-minestom:3.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-minestom:3.7.1") // <-- uncomment in your project
implementation(project(":litecommands-minestom")) // don't use this line in your build.gradle
}

Expand Down
2 changes: 1 addition & 1 deletion examples/velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-velocity:3.7.1") // <-- uncomment in your project
implementation(project(":litecommands-velocity")) // don't use this line in your build.gradle
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import dev.rollczi.litecommands.velocity.LiteVelocityFactory;
import dev.rollczi.litecommands.velocity.tools.VelocityOnlyPlayerContextual;

@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "1.0.0", authors = "Rollczi")
@Plugin(id = "example-plugin", name = "ExamplePlugin", version = "3.7.1", authors = "Rollczi")
public class ExamplePlugin {

private final ProxyServer proxyServer;
Expand Down
2 changes: 1 addition & 1 deletion litecommands-fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "litecommands",
"version": "3.7.0",
"version": "3.7.1",
"name": "LiteCommands",
"description": "Annotation based command framework for Fabric.",
"authors": [
Expand Down

0 comments on commit d1a7a4d

Please sign in to comment.