Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFCORE-6677] Bump the core management version to version 25 #5845

Merged
merged 1 commit into from
Feb 2, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ private enum KnownRelease {
WILDFLY27("WildFly27.0", KernelAPIVersion.VERSION_20_0),
WILDFLY28("WildFly28.0", KernelAPIVersion.VERSION_21_0),
WILDFLY29("WildFly29.0", KernelAPIVersion.VERSION_22_0),
WILDFLY30("WildFly30.0", KernelAPIVersion.VERSION_23_0);
WILDFLY30("WildFly30.0", KernelAPIVersion.VERSION_23_0),
WILDFLY31("WildFly31.0", KernelAPIVersion.VERSION_24_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 @@ -75,6 +75,8 @@ public enum KernelAPIVersion {
VERSION_22_0(22, 0, 0),
// WildFly 30.0.0
VERSION_23_0(23, 0, 0),
// WildFly 31.0.0
VERSION_24_0(24, 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 = 24;
public static final int MANAGEMENT_MAJOR_VERSION = 25;
public static final int MANAGEMENT_MINOR_VERSION = 0;
public static final int MANAGEMENT_MICRO_VERSION = 0;

Expand Down