You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2022/03/10 14:46:48 UTC

[rocketmq] branch 5.0.0-alpha updated (be750f0 -> ee8decd)

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

jinrongtong pushed a change to branch 5.0.0-alpha
in repository https://gitbox.apache.org/repos/asf/rocketmq.git.


    omit be750f0  [maven-release-plugin] prepare release rocketmq-all-5.0.0-ALPHA
     new ee8decd  Prepare to release rocketmq 5.0.0-alpha

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (be750f0)
            \
             N -- N -- N   refs/heads/5.0.0-alpha (ee8decd)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 acl/pom.xml                                                    | 2 +-
 broker/pom.xml                                                 | 2 +-
 client/pom.xml                                                 | 2 +-
 common/pom.xml                                                 | 2 +-
 common/src/main/java/org/apache/rocketmq/common/MQVersion.java | 2 +-
 distribution/pom.xml                                           | 2 +-
 example/pom.xml                                                | 2 +-
 filter/pom.xml                                                 | 2 +-
 logging/pom.xml                                                | 2 +-
 namesrv/pom.xml                                                | 2 +-
 openmessaging/pom.xml                                          | 2 +-
 pom.xml                                                        | 4 ++--
 remoting/pom.xml                                               | 2 +-
 srvutil/pom.xml                                                | 2 +-
 store/pom.xml                                                  | 2 +-
 test/pom.xml                                                   | 2 +-
 tools/pom.xml                                                  | 2 +-
 17 files changed, 18 insertions(+), 18 deletions(-)

[rocketmq] 01/01: Prepare to release rocketmq 5.0.0-alpha

Posted by ji...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ee8decdc77b2d23f692b6ee1edc254474971abab
Author: RongtongJin <ji...@mails.ucas.ac.cn>
AuthorDate: Thu Mar 10 22:46:11 2022 +0800

    Prepare to release rocketmq 5.0.0-alpha
---
 common/src/main/java/org/apache/rocketmq/common/MQVersion.java | 2 +-
 1 file changed, 1 insertion(+), 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 823a847..8a2e43c 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.V5_0_0_ALPHA_SNAPSHOT.ordinal();
+    public static final int CURRENT_VERSION = Version.V5_0_0_ALPHA.ordinal();
 
     public static String getVersionDesc(int value) {
         int length = Version.values().length;