Skip to content

Commit 948f9d4

Browse files
committed
Update version to 11.0.0
1 parent 08f1fe1 commit 948f9d4

File tree

9 files changed

+45
-43
lines changed

9 files changed

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

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

docs/en/dev-setup/setup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
5353
<dependency>
5454
<groupId>dev.jorel</groupId>
5555
<artifactId>commandapi-paper-core</artifactId>
56-
<version>11.0.0-SNAPSHOT</version>
56+
<version>11.0.0</version>
5757
<scope>provided</scope>
5858
</dependency>
5959
</dependencies>
@@ -67,7 +67,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
6767
<dependency>
6868
<groupId>dev.jorel</groupId>
6969
<artifactId>commandapi-spigot-core</artifactId>
70-
<version>11.0.0-SNAPSHOT</version>
70+
<version>11.0.0</version>
7171
<scope>provided</scope>
7272
</dependency>
7373
</dependencies>
@@ -110,7 +110,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
110110

111111
```groovy
112112
dependencies {
113-
compileOnly "dev.jorel:commandapi-paper-core:11.0.0-SNAPSHOT"
113+
compileOnly "dev.jorel:commandapi-paper-core:11.0.0"
114114
}
115115
```
116116

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

120120
```groovy
121121
dependencies {
122-
compileOnly "dev.jorel:commandapi-spigot-core:11.0.0-SNAPSHOT"
122+
compileOnly "dev.jorel:commandapi-spigot-core:11.0.0"
123123
}
124124
```
125125

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

133133
```kotlin
134134
dependencies {
135-
compileOnly("dev.jorel:commandapi-paper-core:11.0.0-SNAPSHOT")
135+
compileOnly("dev.jorel:commandapi-paper-core:11.0.0")
136136
}
137137
```
138138

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

142142
```kotlin
143143
dependencies {
144-
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0-SNAPSHOT")
144+
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0")
145145
}
146146
```
147147

docs/en/dev-setup/shading.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Add the CommandAPI shade dependency:
163163
<dependency>
164164
<groupId>dev.jorel</groupId>
165165
<artifactId>commandapi-spigot-shade</artifactId>
166-
<version>11.0.0-SNAPSHOT</version>
166+
<version>11.0.0</version>
167167
</dependency>
168168
</dependencies>
169169
```
@@ -176,7 +176,7 @@ Add the CommandAPI shade dependency:
176176
<dependency>
177177
<groupId>dev.jorel</groupId>
178178
<artifactId>commandapi-paper-shade</artifactId>
179-
<version>11.0.0-SNAPSHOT</version>
179+
<version>11.0.0</version>
180180
</dependency>
181181
</dependencies>
182182
```
@@ -273,7 +273,7 @@ Next, we declare our dependencies:
273273

274274
```groovy
275275
dependencies {
276-
implementation "dev.jorel:commandapi-spigot-shade:11.0.0-SNAPSHOT"
276+
implementation "dev.jorel:commandapi-spigot-shade:11.0.0"
277277
}
278278
```
279279

@@ -282,7 +282,7 @@ dependencies {
282282

283283
```groovy
284284
dependencies {
285-
implementation "dev.jorel:commandapi-paper-shade:11.0.0-SNAPSHOT"
285+
implementation "dev.jorel:commandapi-paper-shade:11.0.0"
286286
}
287287
```
288288

@@ -293,7 +293,7 @@ dependencies {
293293

294294
```kotlin
295295
dependencies {
296-
implementation("dev.jorel:commandapi-spigot-shade:11.0.0-SNAPSHOT")
296+
implementation("dev.jorel:commandapi-spigot-shade:11.0.0")
297297
}
298298
```
299299

@@ -302,7 +302,7 @@ dependencies {
302302

303303
```kotlin
304304
dependencies {
305-
implementation("dev.jorel:commandapi-paper-shade:11.0.0-SNAPSHOT")
305+
implementation("dev.jorel:commandapi-paper-shade:11.0.0")
306306
}
307307
```
308308

docs/en/kotlin-dsl/intro.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To install the DSL, you need to add the Kotlin DSL dependency into your build sc
2727
<dependency>
2828
<groupId>dev.jorel</groupId>
2929
<artifactId>commandapi-kotlin-paper</artifactId>
30-
<version>11.0.0-SNAPSHOT</version>
30+
<version>11.0.0</version>
3131
</dependency>
3232
</dependencies>
3333
```
@@ -40,7 +40,7 @@ To install the DSL, you need to add the Kotlin DSL dependency into your build sc
4040
<dependency>
4141
<groupId>dev.jorel</groupId>
4242
<artifactId>commandapi-kotlin-spigot</artifactId>
43-
<version>11.0.0-SNAPSHOT</version>
43+
<version>11.0.0</version>
4444
</dependency>
4545
</dependencies>
4646
```
@@ -124,7 +124,7 @@ Next, you need to add the dependency:
124124

125125
```groovy
126126
dependencies {
127-
implementation "dev.jorel:commandapi-kotlin-paper:11.0.0-SNAPSHOT"
127+
implementation "dev.jorel:commandapi-kotlin-paper:11.0.0"
128128
}
129129
```
130130

@@ -133,7 +133,7 @@ dependencies {
133133

134134
```groovy
135135
dependencies {
136-
implementation "dev.jorel:commandapi-kotlin-spigot:11.0.0-SNAPSHOT"
136+
implementation "dev.jorel:commandapi-kotlin-spigot:11.0.0"
137137
}
138138
```
139139

@@ -145,7 +145,7 @@ dependencies {
145145

146146
```kotlin
147147
dependencies {
148-
implementation("dev.jorel:commandapi-kotlin-paper:11.0.0-SNAPSHOT")
148+
implementation("dev.jorel:commandapi-kotlin-paper:11.0.0")
149149
}
150150
```
151151

@@ -154,7 +154,7 @@ dependencies {
154154

155155
```kotlin
156156
dependencies {
157-
implementation("dev.jorel:commandapi-kotlin-spigot:11.0.0-SNAPSHOT")
157+
implementation("dev.jorel:commandapi-kotlin-spigot:11.0.0")
158158
}
159159
```
160160

docs/en/test/setup.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ When you add the dependencies for MockBukkit and `commandapi-paper-test-toolkit`
3131
<dependency>
3232
<groupId>dev.jorel</groupId>
3333
<artifactId>commandapi-paper-test-toolkit</artifactId>
34-
<version>11.0.0-SNAPSHOT</version>
34+
<version>11.0.0</version>
3535
<scope>test</scope>
3636
</dependency>
3737

3838
<!-- May also be the shade dependency -->
3939
<dependency>
4040
<groupId>dev.jorel</groupId>
4141
<artifactId>commandapi-paper-core</artifactId>
42-
<version>11.0.0-SNAPSHOT</version>
42+
<version>11.0.0</version>
4343
<scope>provided</scope>
4444
</dependency>
4545

@@ -71,10 +71,10 @@ dependencies {
7171
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
7272
testImplementation 'org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.72.8'
7373
74-
testImplementation 'dev.jorel:commandapi-paper-test-toolkit:11.0.0-SNAPSHOT'
74+
testImplementation 'dev.jorel:commandapi-paper-test-toolkit:11.0.0'
7575
7676
// May also be the shade dependency
77-
compileOnly 'dev.jorel:commandapi-paper-core:11.0.0-SNAPSHOT'
77+
compileOnly 'dev.jorel:commandapi-paper-core:11.0.0'
7878
7979
compileOnly 'io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT'
8080
@@ -91,10 +91,10 @@ dependencies {
9191
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
9292
testImplementation("org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.72.8")
9393

94-
testImplementation("dev.jorel:commandapi-paper-test-toolkit:11.0.0-SNAPSHOT")
94+
testImplementation("dev.jorel:commandapi-paper-test-toolkit:11.0.0")
9595

9696
// May also be the shade dependency
97-
compileOnly("dev.jorel:commandapi-paper-core:11.0.0-SNAPSHOT")
97+
compileOnly("dev.jorel:commandapi-paper-core:11.0.0")
9898

9999
compileOnly("io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT")
100100

@@ -128,15 +128,15 @@ When you add the dependencies for MockBukkit and `commandapi-spigot-test-toolkit
128128
<dependency>
129129
<groupId>dev.jorel</groupId>
130130
<artifactId>commandapi-spigot-test-toolkit</artifactId>
131-
<version>11.0.0-SNAPSHOT</version>
131+
<version>11.0.0</version>
132132
<scope>test</scope>
133133
</dependency>
134134

135135
<!-- May also be the shade dependency -->
136136
<dependency>
137137
<groupId>dev.jorel</groupId>
138138
<artifactId>commandapi-spigot-core</artifactId>
139-
<version>11.0.0-SNAPSHOT</version>
139+
<version>11.0.0</version>
140140
<scope>provided</scope>
141141
</dependency>
142142

@@ -168,10 +168,10 @@ dependencies {
168168
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
169169
testImplementation 'org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.72.8'
170170
171-
testImplementation 'dev.jorel:commandapi-spigot-test-toolkit:11.0.0-SNAPSHOT'
171+
testImplementation 'dev.jorel:commandapi-spigot-test-toolkit:11.0.0'
172172
173173
// May also be the shade dependency
174-
compileOnly 'dev.jorel:commandapi-spigot-core:11.0.0-SNAPSHOT'
174+
compileOnly 'dev.jorel:commandapi-spigot-core:11.0.0'
175175
176176
compileOnly 'org.spigotmc:spigot-api:1.21.8-R0.1-SNAPSHOT'
177177
@@ -188,10 +188,10 @@ dependencies {
188188
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
189189
testImplementation("org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.72.8")
190190

191-
testImplementation("dev.jorel:commandapi-spigot-test-toolkit:11.0.0-SNAPSHOT")
191+
testImplementation("dev.jorel:commandapi-spigot-test-toolkit:11.0.0")
192192

193193
// May also be the shade dependency
194-
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0-SNAPSHOT")
194+
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0")
195195

196196
compileOnly("org.spigotmc:spigot-api:1.21.8-R0.1-SNAPSHOT")
197197

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>11.0.0-SNAPSHOT</version>
29+
<version>11.0.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:11.0.0-SNAPSHOT"
41+
implementation "dev.jorel:commandapi-velocity-shade:11.0.0"
4242
}
4343
```
4444

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

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

docs/public/versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
versions:
2+
- 11.0.0
23
- 10.1.2
3-
- 11.0.0-SNAPSHOT
44
- 9.7.0
55
- 9.6.1
66
- 9.4.2

reference-code/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
commandApiVersion=11.0.0-SNAPSHOT
1+
commandApiVersion=11.0.0
22
paperVersion=1.20.6-R0.1-SNAPSHOT
33
spigotVersion=1.20-R0.1-SNAPSHOT
44
velocityVersion=3.4.0-SNAPSHOT

update.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ sed -i "s/dev.jorel:commandapi-paper-shade:$oldVer/dev.jorel:commandapi-paper-sh
2323
sed -i "s/dev.jorel:commandapi-spigot-shade:$oldVer/dev.jorel:commandapi-spigot-shade:$newVer/" docs/en/dev-setup/shading.md
2424
sed -i "s/dev.jorel:commandapi-kotlin-paper:$oldVer/dev.jorel:commandapi-kotlin-paper:$newVer/" docs/en/kotlin-dsl/intro.md
2525
sed -i "s/dev.jorel:commandapi-kotlin-spigot:$oldVer/dev.jorel:commandapi-kotlin-spigot:$newVer/" docs/en/kotlin-dsl/intro.md
26-
sed -i "s/dev.jorel:commandapi-bukkit-test-toolkit:$oldVer/dev.jorel:commandapi-bukkit-test-toolkit:$newVer/" docs/en/test/setup.md
27-
sed -i "s/dev.jorel:commandapi-bukkit-core:$oldVer/dev.jorel:commandapi-bukkit-core:$newVer/" docs/en/test/setup.md
26+
sed -i "s/dev.jorel:commandapi-paper-core:$oldVer/dev.jorel:commandapi-paper-core:$newVer/" docs/en/test/setup.md
27+
sed -i "s/dev.jorel:commandapi-paper-test-toolkit:$oldVer/dev.jorel:commandapi-paper-test-toolkit:$newVer/" docs/en/test/setup.md
28+
sed -i "s/dev.jorel:commandapi-spigot-core:$oldVer/dev.jorel:commandapi-spigot-core:$newVer/" docs/en/test/setup.md
29+
sed -i "s/dev.jorel:commandapi-spigot-test-toolkit:$oldVer/dev.jorel:commandapi-spigot-test-toolkit:$newVer/" docs/en/test/setup.md
2830
sed -i "s/dev.jorel:commandapi-velocity-shade:$oldVer/dev.jorel:commandapi-velocity-shade:$newVer/" docs/en/velocity/intro.md
2931

3032
# Possible manual updates

0 commit comments

Comments
 (0)