You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by zh...@apache.org on 2021/08/24 11:25:59 UTC

[rocketmq] branch 5.0.0-preview updated: add V5_0_0_PREVIEW

This is an automated email from the ASF dual-hosted git repository.

zhoubo pushed a commit to branch 5.0.0-preview
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/5.0.0-preview by this push:
     new 5d541f4  add V5_0_0_PREVIEW
5d541f4 is described below

commit 5d541f47723e8d87162d6e7226c75c34a67ccbf4
Author: yuntian.zb <yu...@alibaba-inc.com>
AuthorDate: Tue Aug 24 19:25:19 2021 +0800

    add V5_0_0_PREVIEW
---
 common/src/main/java/org/apache/rocketmq/common/MQVersion.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/common/src/main/java/org/apache/rocketmq/common/MQVersion.java b/common/src/main/java/org/apache/rocketmq/common/MQVersion.java
index 48cd158..be7f17d 100644
--- a/common/src/main/java/org/apache/rocketmq/common/MQVersion.java
+++ b/common/src/main/java/org/apache/rocketmq/common/MQVersion.java
@@ -18,7 +18,7 @@ package org.apache.rocketmq.common;
 
 public class MQVersion {
 
-    public static final int CURRENT_VERSION = Version.V4_9_0.ordinal();
+    public static final int CURRENT_VERSION = Version.V5_0_0_PREVIEW.ordinal();
 
     public static String getVersionDesc(int value) {
         int length = Version.values().length;
@@ -640,6 +640,9 @@ public class MQVersion {
         V4_9_9_SNAPSHOT,
         V4_9_9,
 
+        V5_0_0_PREVIEW_SNAPSHOT,
+        V5_0_0_PREVIEW,
+
         V5_0_0_SNAPSHOT,
         V5_0_0,