Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vLuckyyy authored Dec 2, 2023
1 parent b7ecb16 commit f1ba39b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ maven("https://repo.panda-lang.org/releases")

### Dependency
```kts
implementation("dev.rollczi:{artifact}:3.1.0")
implementation("dev.rollczi:{artifact}:3.1.1")
```
```xml
<dependency>
<groupId>dev.rollczi</groupId>
<artifactId>{artifact}</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
</dependency>
```
`{artifact}` replace with [platform artifact](https://github.com/Rollczi/LiteCommands#platform-artifacts)
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.1.1-SNAPSHOT"
version = "3.1.1"

java {
withSourcesJar()
Expand Down
4 changes: 2 additions & 2 deletions examples/bukkit-adventure-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// 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("dev.rollczi:litecommands-bukkit:3.1.1") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-adventure-platform:3.1.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
4 changes: 2 additions & 2 deletions examples/bukkit-chatgpt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// 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("dev.rollczi:litecommands-bukkit:3.1.1") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-chatgpt:3.1.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
2 changes: 1 addition & 1 deletion examples/bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")

// implementation("dev.rollczi:litecommands-bukkit:3.1.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-bukkit:3.1.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/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.1.0") // <-- uncomment in your project
// implementation("dev.rollczi:litecommands-velocity:3.1.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 @@ -28,7 +28,7 @@ public interface PlatformSender {
* Use {@link Invocation#sender()} instead and check permissions.
*/
@Deprecated
@ApiStatus.ScheduledForRemoval(inVersion = "3.1.0")
@ApiStatus.ScheduledForRemoval(inVersion = "3.1.1")
boolean hasPermission(String permission);

<T> T getProperty(MetaKey<T> key);
Expand Down

0 comments on commit f1ba39b

Please sign in to comment.