File tree Expand file tree Collapse file tree 11 files changed +14
-14
lines changed
bukkit-adventure-platform
litecommands-core/src/dev/rollczi/litecommands/platform
litecommands-fabric/src/main/resources Expand file tree Collapse file tree 11 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -86,13 +86,13 @@ maven("https://repo.panda-lang.org/releases")
8686
8787#### ➕ Add LiteCommands to dependencies
8888``` kts
89- implementation(" dev.rollczi:{artifact}:3.6.1 " )
89+ implementation(" dev.rollczi:{artifact}:3.7.0 " )
9090```
9191``` xml
9292<dependency >
9393 <groupId >dev.rollczi</groupId >
9494 <artifactId >{artifact}</artifactId >
95- <version >3.6.1 </version >
95+ <version >3.7.0 </version >
9696</dependency >
9797```
9898> ⚠️ Replace ` {artifact} ` with [ platform artifact] ( https://litedevelopers.github.io/LiteDevelopers-documentation/platforms.html )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66group = " dev.rollczi"
7- version = " 3.7.0-SNAPSHOT "
7+ version = " 3.7.0"
88
99publishing {
1010 java {
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.6.1 ") // <-- uncomment in your project
20- // implementation("dev.rollczi:litecommands-adventure-platform:3.6.1 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.7.0 ") // <-- uncomment in your project
20+ // implementation("dev.rollczi:litecommands-adventure-platform:3.7.0 ") // <-- 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
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.6.1 ") // <-- uncomment in your project
20- // implementation("dev.rollczi:litecommands-chatgpt:3.6.1 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.7.0 ") // <-- uncomment in your project
20+ // implementation("dev.rollczi:litecommands-chatgpt:3.7.0 ") // <-- 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}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ repositories {
1616dependencies {
1717 compileOnly(" org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT" )
1818
19- // implementation("dev.rollczi:litecommands-bukkit:3.6.1 ") // <-- uncomment in your project
19+ // implementation("dev.rollczi:litecommands-bukkit:3.7.0 ") // <-- uncomment in your project
2020 implementation(project(" :litecommands-bukkit" )) // don't use this line in your build.gradle
2121}
2222
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
2121 modImplementation(" net.fabricmc:fabric-loader:0.15.6" )
2222 modImplementation(" net.fabricmc.fabric-api:fabric-api:0.96.1+1.20.4" )
2323
24- // modImplementation("dev.rollczi:litecommands-fabric:3.6.1 ") // <-- uncomment in your project
24+ // modImplementation("dev.rollczi:litecommands-fabric:3.7.0 ") // <-- uncomment in your project
2525 implementation(project(path = " :litecommands-fabric" , configuration = " namedElements" ))
2626
2727}
Original file line number Diff line number Diff line change 11{
22 "schemaVersion" : 1 ,
33 "id" : " litecommands_example" ,
4- "version" : " 3.6.1 " ,
4+ "version" : " 3.7.0 " ,
55 "name" : " LiteCommands Fabric Example" ,
66 "description" : " Annotation based command framework for Fabric." ,
77 "authors" : [
Original file line number Diff line number Diff 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.6.1 ") // <-- uncomment in your project
21+ // implementation("dev.rollczi:litecommands-minestom:3.7.0 ") // <-- uncomment in your project
2222 implementation(project(" :litecommands-minestom" )) // don't use this line in your build.gradle
2323}
2424
Original file line number Diff line number Diff 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.6.1 ") // <-- uncomment in your project
22+ // implementation("dev.rollczi:litecommands-velocity:3.7.0 ") // <-- uncomment in your project
2323 implementation(project(" :litecommands-velocity" )) // don't use this line in your build.gradle
2424}
2525
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public interface PlatformSender {
2828 * Use {@link Invocation#sender()} instead and check permissions.
2929 */
3030 @ Deprecated
31- @ ApiStatus .ScheduledForRemoval (inVersion = "3.6.1 " )
31+ @ ApiStatus .ScheduledForRemoval (inVersion = "3.8.0 " )
3232 boolean hasPermission (String permission );
3333
3434 <T > T getProperty (MetaKey <T > key );
You can’t perform that action at this time.
0 commit comments