Skip to content

Commit a12e2d9

Browse files
committed
Adds global changelog for 9.5.0. Updates velocity intro documentation version
1 parent 1ccd75d commit a12e2d9

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,18 @@ This is the current roadmap for the CommandAPI (as of 30th April 2024):
408408
</tr>
409409
</thead>
410410
<tbody>
411+
<tr>
412+
<td valign="top"><b>9.5.0</b></td>
413+
<td valign="top">June 2024</td>
414+
<td valign="top">
415+
<ul>
416+
<li>Adds support for Minecraft 1.21</li>
417+
<li>Drops support for Minecraft 1.16.1, 1.16.2, 1.16.3 and 1.16.4</li>
418+
<li>Fixes <code>ResourceLocationArgument</code> not working in 1.20.5 and 1.20.6</li>
419+
<li>Fixes <code>/minecraft:reload</code> deleting commands on Paper 1.20.6 (build 65+)</li>
420+
</ul>
421+
</td>
422+
</tr>
411423
<tr>
412424
<td valign="top"><b>9.4.2</b></td>
413425
<td valign="top">May 2024</td>

docssrc/src/velocity_intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,20 @@ As mentioned, Velocity can only be accessed with snapshot builds. These snapshot
5151
<dependency>
5252
<groupId>dev.jorel</groupId>
5353
<artifactId>commandapi-velocity-shade</artifactId>
54-
<version>9.4.0-SNAPSHOT</version>
54+
<version>9.5.0-SNAPSHOT</version>
5555
</dependency>
5656
</dependencies>
5757
```
5858

5959
```gradle,build.gradle
6060
dependencies {
61-
compile "dev.jorel:commandapi-velocity-shade:9.4.0-SNAPSHOT"
61+
compile "dev.jorel:commandapi-velocity-shade:9.5.0-SNAPSHOT"
6262
}
6363
```
6464

6565
```gradle,build.gradle.kts
6666
dependencies {
67-
compileOnly("dev.jorel:commandapi-velocity-shade:9.4.0-SNAPSHOT")
67+
compileOnly("dev.jorel:commandapi-velocity-shade:9.5.0-SNAPSHOT")
6868
}
6969
```
7070

update.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ sed -i "s/<version>$oldVer<\/version>/<version>$newVer<\/version>/" examples/buk
6565
# Velocity #
6666
############
6767

68+
# Note to self: velocity_intro.md in the documentation needs pointing to a SNAPSHOT version (so do that manually)
69+
6870
sed -i "s/<version>$oldVer<\/version>/<version>$newVer<\/version>/" examples/velocity/maven/README.md
6971
sed -i "s/<version>$oldVer<\/version>/<version>$newVer<\/version>/" examples/velocity/maven/pom.xml
7072

0 commit comments

Comments
 (0)