Skip to content

Commit d5314d8

Browse files
committed
Set version to 11.1.0
1 parent b1e8d70 commit d5314d8

File tree

8 files changed

+39
-38
lines changed

8 files changed

+39
-38
lines changed

docs/en/dev-setup/annotations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The annotation system effectively needs to be added twice: Once for compilation
2323
<dependency>
2424
<groupId>dev.jorel</groupId>
2525
<artifactId>commandapi-paper-annotations</artifactId>
26-
<version>11.0.0</version>
26+
<version>11.1.0</version>
2727
<scope>provided</scope>
2828
</dependency>
2929
</dependencies>
@@ -43,7 +43,7 @@ The annotation system effectively needs to be added twice: Once for compilation
4343
<path>
4444
<groupId>dev.jorel</groupId>
4545
<artifactId>commandapi-paper-annotations</artifactId>
46-
<version>11.0.0</version>
46+
<version>11.1.0</version>
4747
</path>
4848
</annotationProcessorPaths>
4949
</configuration>
@@ -62,7 +62,7 @@ The annotation system effectively needs to be added twice: Once for compilation
6262
<dependency>
6363
<groupId>dev.jorel</groupId>
6464
<artifactId>commandapi-spigot-annotations</artifactId>
65-
<version>11.0.0</version>
65+
<version>11.1.0</version>
6666
<scope>provided</scope>
6767
</dependency>
6868
</dependencies>
@@ -82,7 +82,7 @@ The annotation system effectively needs to be added twice: Once for compilation
8282
<path>
8383
<groupId>dev.jorel</groupId>
8484
<artifactId>commandapi-spigot-annotations</artifactId>
85-
<version>11.0.0</version>
85+
<version>11.1.0</version>
8686
</path>
8787
</annotationProcessorPaths>
8888
</configuration>

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</version>
56+
<version>11.1.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</version>
70+
<version>11.1.0</version>
7171
<scope>provided</scope>
7272
</dependency>
7373
</dependencies>
@@ -108,7 +108,7 @@ If you've never used a build system before, I highly recommend it! It makes it e
108108

109109
```groovy
110110
dependencies {
111-
compileOnly "dev.jorel:commandapi-paper-core:11.0.0"
111+
compileOnly "dev.jorel:commandapi-paper-core:11.1.0"
112112
}
113113
```
114114

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

118118
```groovy
119119
dependencies {
120-
compileOnly "dev.jorel:commandapi-spigot-core:11.0.0"
120+
compileOnly "dev.jorel:commandapi-spigot-core:11.1.0"
121121
}
122122
```
123123

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

131131
```kotlin
132132
dependencies {
133-
compileOnly("dev.jorel:commandapi-paper-core:11.0.0")
133+
compileOnly("dev.jorel:commandapi-paper-core:11.1.0")
134134
}
135135
```
136136

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

140140
```kotlin
141141
dependencies {
142-
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0")
142+
compileOnly("dev.jorel:commandapi-spigot-core:11.1.0")
143143
}
144144
```
145145

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</version>
166+
<version>11.1.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</version>
179+
<version>11.1.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"
276+
implementation "dev.jorel:commandapi-spigot-shade:11.1.0"
277277
}
278278
```
279279

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

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

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

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

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

303303
```kotlin
304304
dependencies {
305-
implementation("dev.jorel:commandapi-paper-shade:11.0.0")
305+
implementation("dev.jorel:commandapi-paper-shade:11.1.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</version>
30+
<version>11.1.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</version>
43+
<version>11.1.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"
127+
implementation "dev.jorel:commandapi-kotlin-paper:11.1.0"
128128
}
129129
```
130130

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

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

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

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

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

155155
```kotlin
156156
dependencies {
157-
implementation("dev.jorel:commandapi-kotlin-spigot:11.0.0")
157+
implementation("dev.jorel:commandapi-kotlin-spigot:11.1.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</version>
34+
<version>11.1.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</version>
42+
<version>11.1.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'
74+
testImplementation 'dev.jorel:commandapi-paper-test-toolkit:11.1.0'
7575
7676
// May also be the shade dependency
77-
compileOnly 'dev.jorel:commandapi-paper-core:11.0.0'
77+
compileOnly 'dev.jorel:commandapi-paper-core:11.1.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")
94+
testImplementation("dev.jorel:commandapi-paper-test-toolkit:11.1.0")
9595

9696
// May also be the shade dependency
97-
compileOnly("dev.jorel:commandapi-paper-core:11.0.0")
97+
compileOnly("dev.jorel:commandapi-paper-core:11.1.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</version>
131+
<version>11.1.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</version>
139+
<version>11.1.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'
171+
testImplementation 'dev.jorel:commandapi-spigot-test-toolkit:11.1.0'
172172
173173
// May also be the shade dependency
174-
compileOnly 'dev.jorel:commandapi-spigot-core:11.0.0'
174+
compileOnly 'dev.jorel:commandapi-spigot-core:11.1.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")
191+
testImplementation("dev.jorel:commandapi-spigot-test-toolkit:11.1.0")
192192

193193
// May also be the shade dependency
194-
compileOnly("dev.jorel:commandapi-spigot-core:11.0.0")
194+
compileOnly("dev.jorel:commandapi-spigot-core:11.1.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</version>
29+
<version>11.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:11.0.0"
41+
implementation "dev.jorel:commandapi-velocity-shade:11.1.0"
4242
}
4343
```
4444

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

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

docs/public/versions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
versions:
2+
- 11.1.0
23
- 11.0.0
34
- 10.1.2
45
- 9.7.0

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
1+
commandApiVersion=11.1.0
22
paperVersion=1.20.6-R0.1-SNAPSHOT
33
spigotVersion=1.20-R0.1-SNAPSHOT
44
velocityVersion=3.4.0-SNAPSHOT

0 commit comments

Comments
 (0)