diff --git a/src/IKVM.ByteCode/ClassFormatVersion.cs b/src/IKVM.ByteCode/ClassFormatVersion.cs
index c814a14..e2195bf 100644
--- a/src/IKVM.ByteCode/ClassFormatVersion.cs
+++ b/src/IKVM.ByteCode/ClassFormatVersion.cs
@@ -86,8 +86,11 @@ public record struct ClassFormatVersion(ushort Major, ushort Minor) : IComparabl
/// Java 25 (class file 69.0)
public static readonly ClassFormatVersion Java25 = new(69, 0);
+ /// Java 26 (class file 70.0)
+ public static readonly ClassFormatVersion Java26 = new(70, 0);
+
/// The latest class file format version supported by this library.
- public static readonly ClassFormatVersion Latest = Java25;
+ public static readonly ClassFormatVersion Latest = Java26;
///
/// Implicitly converts a major version number to a with a minor version of 0.