Skip to content

Commit

Permalink
Added 1.20.4 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Dec 10, 2023
1 parent 8dce036 commit b2f5a44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<postgresql.version>42.2.18</postgresql.version>
<hikaricp.version>5.0.1</hikaricp.version>
<!-- More visible way to change dependency versions -->
<spigot.version>1.20.3-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.20.4-R0.1-SNAPSHOT</spigot.version>
<!-- Might differ from the last Spigot release for short periods
of time -->
<paper.version>1.20.2-R0.1-SNAPSHOT</paper.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,11 @@ public enum ServerVersion {
/**
* @since 2.0.0
*/
V1_20_3(Compatibility.COMPATIBLE),;
V1_20_3(Compatibility.COMPATIBLE),
/**
* @since 2.0.0
*/
V1_20_4(Compatibility.COMPATIBLE);

private final Compatibility compatibility;

Expand Down

0 comments on commit b2f5a44

Please sign in to comment.