Skip to content

Commit

Permalink
[WFCORE-6803] Bump the kernel management API version to 26.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yersan committed Apr 24, 2024
1 parent b12cf4c commit a4140c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ private enum KnownRelease {
WILDFLY28("WildFly28.0", KernelAPIVersion.VERSION_21_0),
WILDFLY29("WildFly29.0", KernelAPIVersion.VERSION_22_0),
WILDFLY30("WildFly30.0", KernelAPIVersion.VERSION_23_0),
WILDFLY31("WildFly31.0", KernelAPIVersion.VERSION_24_0);
WILDFLY31("WildFly31.0", KernelAPIVersion.VERSION_24_0),
WILDFLY32("WildFly32.0", KernelAPIVersion.VERSION_25_0);

private static final Map<String, KnownRelease> map = new HashMap<>();
static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ public enum KernelAPIVersion {
VERSION_23_0(23, 0, 0),
// WildFly 31.0.0
VERSION_24_0(24, 0, 0),
// WildFly 32.0.0
VERSION_25_0(25, 0, 0),

// Latest
CURRENT(Version.MANAGEMENT_MAJOR_VERSION, Version.MANAGEMENT_MINOR_VERSION, Version.MANAGEMENT_MICRO_VERSION);
Expand Down
2 changes: 1 addition & 1 deletion version/src/main/java/org/jboss/as/version/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Version {
public static final String UNKNOWN_CODENAME = "";
public static final String AS_VERSION;
public static final String AS_RELEASE_CODENAME;
public static final int MANAGEMENT_MAJOR_VERSION = 25;
public static final int MANAGEMENT_MAJOR_VERSION = 26;
public static final int MANAGEMENT_MINOR_VERSION = 0;
public static final int MANAGEMENT_MICRO_VERSION = 0;

Expand Down

0 comments on commit a4140c2

Please sign in to comment.