This commit is contained in:
derklaro 2022-08-07 10:10:00 +02:00
parent 7fd4ec3172
commit e6e8cd4890
No known key found for this signature in database
GPG Key ID: FEB0E33393FE6B91
3 changed files with 4 additions and 3 deletions

View File

@ -19,7 +19,7 @@
<junit.version>5.9.0</junit.version>
<mockito.version>4.6.1</mockito.version>
<netty.version>4.1.77.Final</netty.version>
<spigot.version>1.19.1-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.19.2-R0.1-SNAPSHOT</spigot.version>
</properties>
<build>

View File

@ -39,9 +39,9 @@ public class ProtocolLibrary {
public static final String MAXIMUM_MINECRAFT_VERSION = MinecraftVersion.LATEST.getVersion();
/**
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (1.19.1) was released.
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (1.19.2) was released.
*/
public static final String MINECRAFT_LAST_RELEASE_DATE = "2022-07-27";
public static final String MINECRAFT_LAST_RELEASE_DATE = "2022-08-05";
/**
* Plugins that are currently incompatible with ProtocolLib.

View File

@ -83,6 +83,7 @@ public final class MinecraftProtocolVersion {
map.put(new MinecraftVersion(1, 19, 0), 759);
map.put(new MinecraftVersion(1, 19, 1), 760);
map.put(new MinecraftVersion(1, 19, 2), 760);
return map;
}