Updated to 1.9.2 and server 1.15 compatibility.

Note - testing still in progress...
This commit is contained in:
tastybento 2019-12-10 18:10:51 -08:00
parent a82e6bbdc0
commit 3332b65b86
2 changed files with 9 additions and 3 deletions

View File

@ -68,7 +68,7 @@
<powermock.version>2.0.4</powermock.version> <powermock.version>2.0.4</powermock.version>
<mongodb.version>3.8.0</mongodb.version> <mongodb.version>3.8.0</mongodb.version>
<!-- More visible way how to change dependency versions --> <!-- More visible way how to change dependency versions -->
<spigot.version>1.14.4-R0.1-SNAPSHOT</spigot.version> <spigot.version>1.15-R0.1-SNAPSHOT</spigot.version>
<bstats.version>1.5</bstats.version> <bstats.version>1.5</bstats.version>
<vault.version>1.7</vault.version> <vault.version>1.7</vault.version>
<placeholderapi.version>2.10.3</placeholderapi.version> <placeholderapi.version>2.10.3</placeholderapi.version>
@ -81,7 +81,7 @@
<!-- Do not change unless you want different name for local builds. --> <!-- Do not change unless you want different name for local builds. -->
<build.number>-LOCAL</build.number> <build.number>-LOCAL</build.number>
<!-- This allows to change between versions. --> <!-- This allows to change between versions. -->
<build.version>1.9.1</build.version> <build.version>1.9.2</build.version>
</properties> </properties>
<!-- Profiles will allow to automatically change build version. --> <!-- Profiles will allow to automatically change build version. -->

View File

@ -115,7 +115,13 @@ public class ServerCompatibility {
/** /**
* @since 1.6.0 * @since 1.6.0
*/ */
V1_14_4(Compatibility.COMPATIBLE); V1_14_4(Compatibility.COMPATIBLE),
/**
* @since 1.9.2
*/
V1_15(Compatibility.COMPATIBLE)
;
private Compatibility compatibility; private Compatibility compatibility;