Skip to content

Commit

Permalink
Merge pull request #6249 from yersan/WFCORE-6904
Browse files Browse the repository at this point in the history
[WFCORE-6904] Bump the kernel management API version to 28.0.0
  • Loading branch information
yersan authored Nov 25, 2024
2 parents bf4f81d + b82f464 commit 5691397
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 @@ -81,7 +81,8 @@ private enum KnownRelease {
WILDFLY30("WildFly30.0", KernelAPIVersion.VERSION_23_0),
WILDFLY31("WildFly31.0", KernelAPIVersion.VERSION_24_0),
WILDFLY32("WildFly32.0", KernelAPIVersion.VERSION_25_0),
WILDFLY33("WildFly33.0", KernelAPIVersion.VERSION_26_0);
WILDFLY33("WildFly33.0", KernelAPIVersion.VERSION_26_0),
WILDFLY34("WildFly34.0", KernelAPIVersion.VERSION_27_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 @@ -81,6 +81,8 @@ public enum KernelAPIVersion {
VERSION_25_0(25, 0, 0),
// WildFly 33.0.0
VERSION_26_0(26, 0, 0),
// WildFly 34.0.0
VERSION_27_0(27, 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 = 27;
public static final int MANAGEMENT_MAJOR_VERSION = 28;
public static final int MANAGEMENT_MINOR_VERSION = 0;
public static final int MANAGEMENT_MICRO_VERSION = 0;

Expand Down

0 comments on commit 5691397

Please sign in to comment.