Skip to content

Commit d4c9e35

Browse files
committed
Set version to 10.1.0
1 parent 208b9b8 commit d4c9e35

File tree

8 files changed

+33
-33
lines changed

8 files changed

+33
-33
lines changed

docs/en/dev-setup/annotations.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The annotation system effectively needs to be added twice: Once for compilation
2222
<dependency>
2323
<groupId>dev.jorel</groupId>
2424
<artifactId>commandapi-annotations</artifactId>
25-
<version>10.0.0</version>
25+
<version>10.1.0</version>
2626
<scope>provided</scope>
2727
</dependency>
2828
</dependencies>
@@ -42,7 +42,7 @@ The annotation system effectively needs to be added twice: Once for compilation
4242
<path>
4343
<groupId>dev.jorel</groupId>
4444
<artifactId>commandapi-annotations</artifactId>
45-
<version>10.0.0</version>
45+
<version>10.1.0</version>
4646
</path>
4747
</annotationProcessorPaths>
4848
</configuration>
@@ -81,17 +81,17 @@ The annotation system effectively needs to be added twice: Once for compilation
8181

8282
```groovy
8383
dependencies {
84-
compileOnly "dev.jorel:commandapi-annotations:10.0.0"
85-
annotationProcessor "dev.jorel:commandapi-annotations:10.0.0"
84+
compileOnly "dev.jorel:commandapi-annotations:10.1.0"
85+
annotationProcessor "dev.jorel:commandapi-annotations:10.1.0"
8686
}
8787
```
8888
</div>
8989
<div class="kts">
9090

9191
```kotlin
9292
dependencies {
93-
compileOnly("dev.jorel:commandapi-annotations:10.0.0")
94-
annotationProcessor("dev.jorel:commandapi-annotations:10.0.0")
93+
compileOnly("dev.jorel:commandapi-annotations:10.1.0")
94+
annotationProcessor("dev.jorel:commandapi-annotations:10.1.0")
9595
}
9696
```
9797
</div>

docs/en/dev-setup/setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
5151
<dependency>
5252
<groupId>dev.jorel</groupId>
5353
<artifactId>commandapi-bukkit-core</artifactId>
54-
<version>10.0.0</version>
54+
<version>10.1.0</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
</dependencies>
@@ -90,7 +90,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
9090

9191
```groovy
9292
dependencies {
93-
compileOnly "dev.jorel:commandapi-bukkit-core:10.0.0"
93+
compileOnly "dev.jorel:commandapi-bukkit-core:10.1.0"
9494
}
9595
```
9696

@@ -99,7 +99,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
9999

100100
```kotlin
101101
dependencies {
102-
compileOnly("dev.jorel:commandapi-bukkit-core:10.0.0")
102+
compileOnly("dev.jorel:commandapi-bukkit-core:10.1.0")
103103
}
104104
```
105105

docs/en/dev-setup/shading.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Add the CommandAPI shade dependency:
113113
<dependency>
114114
<groupId>dev.jorel</groupId>
115115
<artifactId>commandapi-bukkit-shade</artifactId>
116-
<version>10.0.0</version>
116+
<version>10.1.0</version>
117117
</dependency>
118118
</dependencies>
119119
```
@@ -125,7 +125,7 @@ Add the CommandAPI shade dependency:
125125
<dependency>
126126
<groupId>dev.jorel</groupId>
127127
<artifactId>commandapi-bukkit-shade-mojang-mapped</artifactId>
128-
<version>10.0.0</version>
128+
<version>10.1.0</version>
129129
</dependency>
130130
</dependencies>
131131
```
@@ -221,15 +221,15 @@ Next, we declare our dependencies:
221221

222222
```groovy
223223
dependencies {
224-
implementation "dev.jorel:commandapi-bukkit-shade:10.0.0"
224+
implementation "dev.jorel:commandapi-bukkit-shade:10.1.0"
225225
}
226226
```
227227
</div>
228228
<div class="mojmap">
229229

230230
```groovy
231231
dependencies {
232-
implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.0.0"
232+
implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.1.0"
233233
}
234234
```
235235
</div>
@@ -239,15 +239,15 @@ dependencies {
239239

240240
```kotlin
241241
dependencies {
242-
implementation("dev.jorel:commandapi-bukkit-shade:10.0.0")
242+
implementation("dev.jorel:commandapi-bukkit-shade:10.1.0")
243243
}
244244
```
245245
</div>
246246
<div class="mojmap">
247247

248248
```kotlin
249249
dependencies {
250-
implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.0.0")
250+
implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:10.1.0")
251251
}
252252
```
253253
</div>

docs/en/kotlin-dsl/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To install the DSL, you need to add the `commandapi-bukkit-kotlin` dependency in
2626
<dependency>
2727
<groupId>dev.jorel</groupId>
2828
<artifactId>commandapi-bukkit-kotlin</artifactId>
29-
<version>10.0.0</version>
29+
<version>10.1.0</version>
3030
</dependency>
3131
</dependencies>
3232
```
@@ -106,7 +106,7 @@ Next, you need to add the dependency:
106106

107107
```groovy
108108
dependencies {
109-
implementation "dev.jorel:commandapi-bukkit-kotlin:10.0.0"
109+
implementation "dev.jorel:commandapi-bukkit-kotlin:10.1.0"
110110
}
111111
```
112112

@@ -115,7 +115,7 @@ dependencies {
115115

116116
```kotlin
117117
dependencies {
118-
implementation("dev.jorel:commandapi-bukkit-kotlin:10.0.0")
118+
implementation("dev.jorel:commandapi-bukkit-kotlin:10.1.0")
119119
}
120120
```
121121

docs/en/test/setup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ When you add the dependencies for MockBukkit and `commandapi-bukkit-test-toolkit
2929
<dependency>
3030
<groupId>dev.jorel</groupId>
3131
<artifactId>commandapi-bukkit-test-toolkit</artifactId>
32-
<version>10.0.0</version>
32+
<version>10.1.0</version>
3333
<scope>test</scope>
3434
</dependency>
3535

3636
<!-- May be the shade dependency and/or mojang-mapped -->
3737
<dependency>
3838
<groupId>dev.jorel</groupId>
3939
<artifactId>commandapi-bukkit-core</artifactId>
40-
<version>10.0.0</version>
40+
<version>10.1.0</version>
4141
<scope>provided</scope>
4242
</dependency>
4343

@@ -70,10 +70,10 @@ dependencies {
7070
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
7171
testImplementation 'com.github.seeseemelk:MockBukkit-v1.21:3.128.0'
7272
73-
testImplementation 'dev.jorel:commandapi-bukkit-test-toolkit:10.0.0'
73+
testImplementation 'dev.jorel:commandapi-bukkit-test-toolkit:10.1.0'
7474
7575
// May be the shade dependency and/or mojang-mapped
76-
compileOnly 'dev.jorel:commandapi-bukkit-core:10.0.0'
76+
compileOnly 'dev.jorel:commandapi-bukkit-core:10.1.0'
7777
7878
// Can also be paper-api
7979
compileOnly 'org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT'
@@ -91,10 +91,10 @@ dependencies {
9191
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
9292
testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.128.0")
9393

94-
testImplementation("dev.jorel:commandapi-bukkit-test-toolkit:10.0.0")
94+
testImplementation("dev.jorel:commandapi-bukkit-test-toolkit:10.1.0")
9595

9696
// May be the shade dependency and/or mojang-mapped
97-
compileOnly("dev.jorel:commandapi-bukkit-core:10.0.0")
97+
compileOnly("dev.jorel:commandapi-bukkit-core:10.1.0")
9898

9999
// Can also be paper-api
100100
compileOnly("org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT")

docs/en/velocity/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the dependency to your list of dependencies in your build script:
2626
<dependency>
2727
<groupId>dev.jorel</groupId>
2828
<artifactId>commandapi-velocity-shade</artifactId>
29-
<version>10.0.0</version>
29+
<version>10.1.0</version>
3030
</dependency>
3131
</dependencies>
3232
```
@@ -38,7 +38,7 @@ Add the dependency to your list of dependencies in your build script:
3838

3939
```groovy
4040
dependencies {
41-
implementation "dev.jorel:commandapi-velocity-shade:10.0.0"
41+
implementation "dev.jorel:commandapi-velocity-shade:10.1.0"
4242
}
4343
```
4444

@@ -47,7 +47,7 @@ dependencies {
4747

4848
```kotlin
4949
dependencies {
50-
implementation("dev.jorel:commandapi-velocity-shade:10.0.0")
50+
implementation("dev.jorel:commandapi-velocity-shade:10.1.0")
5151
}
5252
```
5353

docs/public/versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
versions:
2-
- 10.0.0
2+
- 10.1.0
33
- 9.7.0
44
- 9.6.1
55
- 9.4.2

reference-code/gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ com-mojang-authlib = "3.3.39"
77
com-mojang-brigadier = "1.0.17"
88
com-velocitypowered-velocity-api = "3.4.0-SNAPSHOT"
99
de-tr7zw-item-nbt-api = "2.11.1"
10-
dev-jorel-commandapi-annotations = "10.0.0"
11-
dev-jorel-commandapi-bukkit-core = "10.0.0"
12-
dev-jorel-commandapi-bukkit-kotlin = "10.0.0"
13-
dev-jorel-commandapi-bukkit-test-toolkit = "10.0.0"
14-
dev-jorel-commandapi-velocity-shade = "10.0.0"
10+
dev-jorel-commandapi-annotations = "10.1.0"
11+
dev-jorel-commandapi-bukkit-core = "10.1.0"
12+
dev-jorel-commandapi-bukkit-kotlin = "10.1.0"
13+
dev-jorel-commandapi-bukkit-test-toolkit = "10.1.0"
14+
dev-jorel-commandapi-velocity-shade = "10.1.0"
1515
io-papermc-paper-paper-api = "1.21-R0.1-SNAPSHOT"
1616
net-kyori-adventure-platform-bukkit = "4.2.0"
1717
org-jetbrains-kotlin-kotlin-stdlib = "2.0.0"

0 commit comments

Comments
 (0)