Skip to content

Commit

Permalink
Modify MQVersion to V5_0_0_BETA_SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
RongtongJin committed Mar 12, 2022
1 parent 3aa31a6 commit 176e0d5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion common/src/main/java/org/apache/rocketmq/common/MQVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

public class MQVersion {

public static final int CURRENT_VERSION = Version.V5_0_0_ALPHA.ordinal();
public static final int CURRENT_VERSION = Version.V5_0_0_BETA_SNAPSHOT.ordinal();

public static String getVersionDesc(int value) {
int length = Version.values().length;
Expand Down Expand Up @@ -640,6 +640,15 @@ public enum Version {
V4_9_9_SNAPSHOT,
V4_9_9,

V5_0_0_PREVIEW_SNAPSHOT,
V5_0_0_PREVIEW,

V5_0_0_ALPHA_SNAPSHOT,
V5_0_0_ALPHA,

V5_0_0_BETA_SNAPSHOT,
V5_0_0_BETA,

V5_0_0_SNAPSHOT,
V5_0_0,

Expand Down

0 comments on commit 176e0d5

Please sign in to comment.