Skip to content

Commit

Permalink
Added support for MC 1.19.1
Browse files Browse the repository at this point in the history
- Updated pom.xml
- Updated tests workflow
- Updated README.md
  • Loading branch information
josemmo committed Aug 2, 2022
1 parent 9fa78a9 commit 752c49e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 8
continue-on-error: ${{ matrix.version == '1.19' }}
continue-on-error: ${{ matrix.version == '1.19.1' }}
strategy:
fail-fast: false
matrix:
flavor: ['bukkit', 'spigot', 'paper', 'purpur']
version: ['1.19', '1.18.2', '1.17.1', '1.16.5']
version: ['1.19.1', '1.18.2', '1.17.1', '1.16.5']
steps:
# Download code from repository
- name: Checkout code
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
env:
VERSION: ${{ matrix.version }}
run: |
if [ $VERSION == "1.19" ]; then
if [ $VERSION == "1.19.1" ]; then
url="https://ci.dmulloy2.net/job/ProtocolLib/lastStableBuild/artifact/target/ProtocolLib.jar"
else
url="https://github.com/dmulloy2/ProtocolLib/releases/download/4.8.0/ProtocolLib.jar"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Here are the Minecraft distributions where Yamipa should be able to run:
| 1.16.x ||||
| 1.17 & 1.17.1 ||||
| 1.18 & 1.18.x ||||
| 1.19 ||||
| 1.19 & 1.19.1 ||||

## Configuration
Yamipa is ready-to-go right out of the box. By default, it creates the following files and directories under the
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<version>1.19.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 752c49e

Please sign in to comment.