From f6aa49d610e47b40ffa72d09e3cb0b02c3e9edc7 Mon Sep 17 00:00:00 2001 From: willkroboth <46540330+willkroboth@users.noreply.github.com> Date: Wed, 20 Aug 2025 11:40:25 -0400 Subject: [PATCH] Update to version 11.0.0-SNAPSHOT --- docs/en/dev-setup/annotations.md | 12 ++++++------ docs/en/dev-setup/setup.md | 6 +++--- docs/en/dev-setup/shading.md | 12 ++++++------ docs/en/kotlin-dsl/intro.md | 6 +++--- docs/en/test/setup.md | 12 ++++++------ docs/en/velocity/intro.md | 6 +++--- reference-code/gradle/libs.versions.toml | 10 +++++----- 7 files changed, 32 insertions(+), 32 deletions(-) diff --git a/docs/en/dev-setup/annotations.md b/docs/en/dev-setup/annotations.md index 8624b361..6919e019 100644 --- a/docs/en/dev-setup/annotations.md +++ b/docs/en/dev-setup/annotations.md @@ -22,7 +22,7 @@ The annotation system effectively needs to be added twice: Once for compilation dev.jorel commandapi-annotations - 10.1.2 + 11.0.0-SNAPSHOT provided @@ -42,7 +42,7 @@ The annotation system effectively needs to be added twice: Once for compilation dev.jorel commandapi-annotations - 10.1.2 + 11.0.0-SNAPSHOT @@ -81,8 +81,8 @@ The annotation system effectively needs to be added twice: Once for compilation ```groovy dependencies { - compileOnly "dev.jorel:commandapi-annotations:10.1.2" - annotationProcessor "dev.jorel:commandapi-annotations:10.1.2" + compileOnly "dev.jorel:commandapi-annotations:11.0.0-SNAPSHOT" + annotationProcessor "dev.jorel:commandapi-annotations:11.0.0-SNAPSHOT" } ``` @@ -90,8 +90,8 @@ The annotation system effectively needs to be added twice: Once for compilation ```kotlin dependencies { - compileOnly("dev.jorel:commandapi-annotations:10.1.2") - annotationProcessor("dev.jorel:commandapi-annotations:10.1.2") + compileOnly("dev.jorel:commandapi-annotations:11.0.0-SNAPSHOT") + annotationProcessor("dev.jorel:commandapi-annotations:11.0.0-SNAPSHOT") } ``` diff --git a/docs/en/dev-setup/setup.md b/docs/en/dev-setup/setup.md index c4b7d4f1..38fe0fe2 100644 --- a/docs/en/dev-setup/setup.md +++ b/docs/en/dev-setup/setup.md @@ -51,7 +51,7 @@ If you've never used a build system before, I highly recommend it! It makes it e dev.jorel commandapi-bukkit-core - 10.1.2 + 11.0.0-SNAPSHOT provided @@ -90,7 +90,7 @@ If you've never used a build system before, I highly recommend it! It makes it e ```groovy dependencies { - compileOnly "dev.jorel:commandapi-bukkit-core:10.1.2" + compileOnly "dev.jorel:commandapi-bukkit-core:11.0.0-SNAPSHOT" } ``` @@ -99,7 +99,7 @@ If you've never used a build system before, I highly recommend it! It makes it e ```kotlin dependencies { - compileOnly("dev.jorel:commandapi-bukkit-core:10.1.2") + compileOnly("dev.jorel:commandapi-bukkit-core:11.0.0-SNAPSHOT") } ``` diff --git a/docs/en/dev-setup/shading.md b/docs/en/dev-setup/shading.md index dc9fcb2a..c3e007b6 100644 --- a/docs/en/dev-setup/shading.md +++ b/docs/en/dev-setup/shading.md @@ -113,7 +113,7 @@ Add the CommandAPI shade dependency: dev.jorel commandapi-bukkit-shade - 10.1.2 + 11.0.0-SNAPSHOT ``` @@ -125,7 +125,7 @@ Add the CommandAPI shade dependency: dev.jorel commandapi-bukkit-shade-mojang-mapped - 10.1.2 + 11.0.0-SNAPSHOT ``` @@ -221,7 +221,7 @@ Next, we declare our dependencies: ```groovy dependencies { - implementation "dev.jorel:commandapi-bukkit-shade:10.1.2" + implementation "dev.jorel:commandapi-bukkit-shade:11.0.0-SNAPSHOT" } ``` @@ -229,7 +229,7 @@ dependencies { ```groovy dependencies { - implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.1.2" + implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:11.0.0-SNAPSHOT" } ``` @@ -239,7 +239,7 @@ dependencies { ```kotlin dependencies { - implementation("dev.jorel:commandapi-bukkit-shade:10.1.2") + implementation("dev.jorel:commandapi-bukkit-shade:11.0.0-SNAPSHOT") } ``` @@ -247,7 +247,7 @@ dependencies { ```kotlin dependencies { - implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.1.2") + implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:11.0.0-SNAPSHOT") } ``` diff --git a/docs/en/kotlin-dsl/intro.md b/docs/en/kotlin-dsl/intro.md index 54abf6a3..e638e51d 100644 --- a/docs/en/kotlin-dsl/intro.md +++ b/docs/en/kotlin-dsl/intro.md @@ -26,7 +26,7 @@ To install the DSL, you need to add the `commandapi-bukkit-kotlin` dependency in dev.jorel commandapi-bukkit-kotlin - 10.1.2 + 11.0.0-SNAPSHOT ``` @@ -106,7 +106,7 @@ Next, you need to add the dependency: ```groovy dependencies { - implementation "dev.jorel:commandapi-bukkit-kotlin:10.1.2" + implementation "dev.jorel:commandapi-bukkit-kotlin:11.0.0-SNAPSHOT" } ``` @@ -115,7 +115,7 @@ dependencies { ```kotlin dependencies { - implementation("dev.jorel:commandapi-bukkit-kotlin:10.1.2") + implementation("dev.jorel:commandapi-bukkit-kotlin:11.0.0-SNAPSHOT") } ``` diff --git a/docs/en/test/setup.md b/docs/en/test/setup.md index 5956afa8..1a85abd7 100644 --- a/docs/en/test/setup.md +++ b/docs/en/test/setup.md @@ -29,7 +29,7 @@ When you add the dependencies for MockBukkit and `commandapi-bukkit-test-toolkit dev.jorel commandapi-bukkit-test-toolkit - 10.1.2 + 11.0.0-SNAPSHOT test @@ -37,7 +37,7 @@ When you add the dependencies for MockBukkit and `commandapi-bukkit-test-toolkit dev.jorel commandapi-bukkit-core - 10.1.2 + 11.0.0-SNAPSHOT provided @@ -70,10 +70,10 @@ dependencies { // See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version testImplementation 'com.github.seeseemelk:MockBukkit-v1.21:3.128.0' - testImplementation 'dev.jorel:commandapi-bukkit-test-toolkit:10.1.2' + testImplementation 'dev.jorel:commandapi-bukkit-test-toolkit:11.0.0-SNAPSHOT' // May be the shade dependency and/or mojang-mapped - compileOnly 'dev.jorel:commandapi-bukkit-core:10.1.2' + compileOnly 'dev.jorel:commandapi-bukkit-core:11.0.0-SNAPSHOT' // Can also be paper-api compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT' @@ -91,10 +91,10 @@ dependencies { // See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.128.0") - testImplementation("dev.jorel:commandapi-bukkit-test-toolkit:10.1.2") + testImplementation("dev.jorel:commandapi-bukkit-test-toolkit:11.0.0-SNAPSHOT") // May be the shade dependency and/or mojang-mapped - compileOnly("dev.jorel:commandapi-bukkit-core:10.1.2") + compileOnly("dev.jorel:commandapi-bukkit-core:11.0.0-SNAPSHOT") // Can also be paper-api compileOnly("org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT") diff --git a/docs/en/velocity/intro.md b/docs/en/velocity/intro.md index dbe9da29..2d5e3c79 100644 --- a/docs/en/velocity/intro.md +++ b/docs/en/velocity/intro.md @@ -26,7 +26,7 @@ Add the dependency to your list of dependencies in your build script: dev.jorel commandapi-velocity-shade - 10.1.2 + 11.0.0-SNAPSHOT ``` @@ -38,7 +38,7 @@ Add the dependency to your list of dependencies in your build script: ```groovy dependencies { - implementation "dev.jorel:commandapi-velocity-shade:10.1.2" + implementation "dev.jorel:commandapi-velocity-shade:11.0.0-SNAPSHOT" } ``` @@ -47,7 +47,7 @@ dependencies { ```kotlin dependencies { - implementation("dev.jorel:commandapi-velocity-shade:10.1.2") + implementation("dev.jorel:commandapi-velocity-shade:11.0.0-SNAPSHOT") } ``` diff --git a/reference-code/gradle/libs.versions.toml b/reference-code/gradle/libs.versions.toml index bf73e249..a63fe69f 100644 --- a/reference-code/gradle/libs.versions.toml +++ b/reference-code/gradle/libs.versions.toml @@ -7,11 +7,11 @@ com-mojang-authlib = "3.3.39" com-mojang-brigadier = "1.0.17" com-velocitypowered-velocity-api = "3.4.0-SNAPSHOT" de-tr7zw-item-nbt-api = "2.11.1" -dev-jorel-commandapi-annotations = "10.1.2" -dev-jorel-commandapi-bukkit-core = "10.1.2" -dev-jorel-commandapi-bukkit-kotlin = "10.1.2" -dev-jorel-commandapi-bukkit-test-toolkit = "10.1.2" -dev-jorel-commandapi-velocity-shade = "10.1.2" +dev-jorel-commandapi-annotations = "11.0.0-SNAPSHOT" +dev-jorel-commandapi-bukkit-core = "11.0.0-SNAPSHOT" +dev-jorel-commandapi-bukkit-kotlin = "11.0.0-SNAPSHOT" +dev-jorel-commandapi-bukkit-test-toolkit = "11.0.0-SNAPSHOT" +dev-jorel-commandapi-velocity-shade = "11.0.0-SNAPSHOT" io-papermc-paper-paper-api = "1.21-R0.1-SNAPSHOT" net-kyori-adventure-platform-bukkit = "4.2.0" org-jetbrains-kotlin-kotlin-stdlib = "2.0.0"