This is an automated email from the ASF dual-hosted git repository.
lizhimin pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git
The following commit(s) were added to refs/heads/develop by this push:
new b5da00ad0f [ISSUE #9936] Release Apache RocketMQ 5.4.0 (#9937)
b5da00ad0f is described below
commit b5da00ad0ff542c55fff93cd8501c69a42647db6
Author: lizhimins <[email protected]>
AuthorDate: Wed Dec 24 15:24:57 2025 +0800
[ISSUE #9936] Release Apache RocketMQ 5.4.0 (#9937)
---
README.md | 8 ++++----
common/src/main/java/org/apache/rocketmq/common/MQVersion.java | 2 +-
pom.xml | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index db7716e1f0..edee6dbbc8 100644
--- a/README.md
+++ b/README.md
@@ -49,21 +49,21 @@ $ java -version
java version "1.8.0_121"
```
-For Windows users, click
[here](https://dist.apache.org/repos/dist/release/rocketmq/5.3.4/rocketmq-all-5.3.4-bin-release.zip)
to download the 5.3.4 RocketMQ binary release,
+For Windows users, click
[here](https://dist.apache.org/repos/dist/release/rocketmq/5.4.0/rocketmq-all-5.4.0-bin-release.zip)
to download the 5.4.0 RocketMQ binary release,
unpack it to your local disk, such as `D:\rocketmq`.
For macOS and Linux users, execute following commands:
```shell
# Download release from the Apache mirror
-$ wget
https://dist.apache.org/repos/dist/release/rocketmq/5.3.4/rocketmq-all-5.3.4-bin-release.zip
+$ wget
https://dist.apache.org/repos/dist/release/rocketmq/5.4.0/rocketmq-all-5.4.0-bin-release.zip
# Unpack the release
-$ unzip rocketmq-all-5.3.4-bin-release.zip
+$ unzip rocketmq-all-5.4.0-bin-release.zip
```
Prepare a terminal and change to the extracted `bin` directory:
```shell
-$ cd rocketmq-all-5.3.4-bin-release/bin
+$ cd rocketmq-all-5.4.0-bin-release/bin
```
**1) Start NameServer**
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 9b1a952672..6886efe725 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_3_4.ordinal();
+ public static final int CURRENT_VERSION = Version.V5_4_0.ordinal();
public static String getVersionDesc(int value) {
int length = Version.values().length;
diff --git a/pom.xml b/pom.xml
index 088dda8b77..9aa2359b97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -88,7 +88,7 @@
</issueManagement>
<properties>
- <revision>5.3.4</revision>
+ <revision>5.4.0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.root>${basedir}</project.root>