Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
group = "net.dmulloy2"
description = "Provides access to the Minecraft protocol"

val mcVersion = "26.1"
val mcVersion = "26.1.2"
val isSnapshot = version.toString().endsWith("-SNAPSHOT")
val commitHash = System.getenv("COMMIT_SHA") ?: ""
val isCI = commitHash.isNotEmpty()
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/comphenix/protocol/ProtocolLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ public class ProtocolLibrary {
/**
* The maximum version ProtocolLib has been tested with.
*/
public static final String MAXIMUM_MINECRAFT_VERSION = "26.1";
public static final String MAXIMUM_MINECRAFT_VERSION = "26.1.2";

/**
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (1.21.11) was released.
* The date (with ISO 8601 or YYYY-MM-DD) when the most recent version (26.1.2) was released.
*/
public static final String MINECRAFT_LAST_RELEASE_DATE = "2026-03-24";
public static final String MINECRAFT_LAST_RELEASE_DATE = "2026-04-09";

private static Plugin plugin;
private static ProtocolConfig config;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
* @author Kristian
*/
public final class MinecraftVersion implements Comparable<MinecraftVersion>, Serializable {
/**
* Version 26.1.2 - tiny takeover hotfix
*/
public static final MinecraftVersion v26_1_2 = new MinecraftVersion("26.1.2");

/**
* Version 26.1 - tiny takeover
*/
Expand Down Expand Up @@ -189,7 +194,7 @@ public final class MinecraftVersion implements Comparable<MinecraftVersion>, Ser
/**
* The latest release version of minecraft.
*/
public static final MinecraftVersion LATEST = v26_1;
public static final MinecraftVersion LATEST = v26_1_2;

// used when serializing
private static final long serialVersionUID = -8695133558996459770L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class MinecraftReflectionTestUtil {

public static final String RELEASE_TARGET = "26.1";
public static final String RELEASE_TARGET = "26.1.2";
public static final String NMS = "net.minecraft";
public static final String OBC = "org.bukkit.craftbukkit";

Expand Down