Merge branch 'master' into sync-async-receive-listeners

This commit is contained in:
Dan Mulloy 2022-08-10 16:49:15 -04:00 committed by GitHub
commit 50572df3a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}