Skip to content
Merged
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
5 changes: 4 additions & 1 deletion src/IKVM.ByteCode/ClassFormatVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,11 @@ public record struct ClassFormatVersion(ushort Major, ushort Minor) : IComparabl
/// <summary>Java 25 (class file 69.0)</summary>
public static readonly ClassFormatVersion Java25 = new(69, 0);

/// <summary>Java 26 (class file 70.0)</summary>
public static readonly ClassFormatVersion Java26 = new(70, 0);

/// <summary>The latest class file format version supported by this library.</summary>
public static readonly ClassFormatVersion Latest = Java25;
public static readonly ClassFormatVersion Latest = Java26;

/// <summary>
/// Implicitly converts a major version number to a <see cref="ClassFormatVersion"/> with a minor version of <c>0</c>.
Expand Down
Loading