Skip to content

Commit d6a4422

Browse files
committed
Update 9.6.2-SNAPSHOT to 9.7.0
1 parent f45beca commit d6a4422

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
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>9.6.2-SNAPSHOT</version>
25+
<version>9.7.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>9.6.2-SNAPSHOT</version>
45+
<version>9.7.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:9.6.2-SNAPSHOT"
85-
annotationProcessor "dev.jorel:commandapi-annotations:9.6.2-SNAPSHOT"
84+
compileOnly "dev.jorel:commandapi-annotations:9.7.0"
85+
annotationProcessor "dev.jorel:commandapi-annotations:9.7.0"
8686
}
8787
```
8888
</div>
8989
<div class="kts">
9090

9191
```kotlin
9292
dependencies {
93-
compileOnly("dev.jorel:commandapi-annotations:9.6.2-SNAPSHOT")
94-
annotationProcessor("dev.jorel:commandapi-annotations:9.6.2-SNAPSHOT")
93+
compileOnly("dev.jorel:commandapi-annotations:9.7.0")
94+
annotationProcessor("dev.jorel:commandapi-annotations:9.7.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>9.6.2-SNAPSHOT</version>
54+
<version>9.7.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:9.6.2-SNAPSHOT"
93+
compileOnly "dev.jorel:commandapi-bukkit-core:9.7.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:9.6.2-SNAPSHOT")
102+
compileOnly("dev.jorel:commandapi-bukkit-core:9.7.0")
103103
}
104104
```
105105

docs/en/dev-setup/shading.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Add the CommandAPI shade dependency:
114114
<dependency>
115115
<groupId>dev.jorel</groupId>
116116
<artifactId>commandapi-bukkit-shade</artifactId>
117-
<version>9.6.2-SNAPSHOT</version>
117+
<version>9.7.0</version>
118118
</dependency>
119119
</dependencies>
120120
```
@@ -126,7 +126,7 @@ Add the CommandAPI shade dependency:
126126
<dependency>
127127
<groupId>dev.jorel</groupId>
128128
<artifactId>commandapi-bukkit-shade-mojang-mapped</artifactId>
129-
<version>9.6.2-SNAPSHOT</version>
129+
<version>9.7.0</version>
130130
</dependency>
131131
</dependencies>
132132
```
@@ -222,15 +222,15 @@ Next, we declare our dependencies:
222222

223223
```groovy
224224
dependencies {
225-
implementation "dev.jorel:commandapi-bukkit-shade:9.6.2-SNAPSHOT"
225+
implementation "dev.jorel:commandapi-bukkit-shade:9.7.0"
226226
}
227227
```
228228
</div>
229229
<div class="mojmap">
230230

231231
```groovy
232232
dependencies {
233-
implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:9.6.2-SNAPSHOT"
233+
implementation "dev.jorel:commandapi-bukkit-shade-mojang-mapped:9.7.0"
234234
}
235235
```
236236
</div>
@@ -240,15 +240,15 @@ dependencies {
240240

241241
```kotlin
242242
dependencies {
243-
implementation("dev.jorel:commandapi-bukkit-shade:9.6.2-SNAPSHOT")
243+
implementation("dev.jorel:commandapi-bukkit-shade:9.7.0")
244244
}
245245
```
246246
</div>
247247
<div class="mojmap">
248248

249249
```kotlin
250250
dependencies {
251-
implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:9.6.2-SNAPSHOT")
251+
implementation("dev.jorel:commandapi-bukkit-shade-mojang-mapped:9.7.0")
252252
}
253253
```
254254
</div>

docs/en/test/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ 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:9.6.2-SNAPSHOT'
73+
testImplementation 'dev.jorel.commandapi-bukkit-test-toolkit:9.7.0'
7474
7575
// May be the shade dependency and/or mojang-mapped
7676
compileOnly 'dev.jorel:commandapi-bukkit-core:9.7.0'
@@ -91,7 +91,7 @@ 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:9.6.2-SNAPSHOT')
94+
testImplementation('dev.jorel.commandapi-bukkit-test-toolkit:9.7.0')
9595

9696
// May be the shade dependency and/or mojang-mapped
9797
compileOnly('dev.jorel:commandapi-bukkit-core:9.7.0')

0 commit comments

Comments
 (0)