This is an automated email from the ASF dual-hosted git repository.
yuz10 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 051ba270f8 [DOCS] Update Chinese docs dependency version from
4.3.0/4.9.1 to 5.5.0 (#10358)
051ba270f8 is described below
commit 051ba270f89e1ee37a1397780e068ed4ece1d3ee
Author: H145608 <[email protected]>
AuthorDate: Tue May 26 11:43:18 2026 +0800
[DOCS] Update Chinese docs dependency version from 4.3.0/4.9.1 to 5.5.0
(#10358)
- docs/cn/Example_Simple_cn.md: update version tag and Gradle dependency
4.3.0 -> 5.5.0
- docs/cn/RocketMQ_Example.md: update Maven version tag 4.9.1 -> 5.5.0 and
Gradle dependency 4.3.0 -> 5.5.0
- Align with the English version (docs/en/Example_Simple.md) which was
already updated to 5.5.0
Co-authored-by: H145608 <[email protected]>
---
docs/cn/Example_Simple_cn.md | 4 ++--
docs/cn/RocketMQ_Example.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/cn/Example_Simple_cn.md b/docs/cn/Example_Simple_cn.md
index f0a2b6a1de..9c8729223b 100644
--- a/docs/cn/Example_Simple_cn.md
+++ b/docs/cn/Example_Simple_cn.md
@@ -9,12 +9,12 @@ maven:
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client</artifactId>
- <version>4.3.0</version>
+ <version>5.5.0</version>
</dependency>
```
gradle:
``` java
-compile 'org.apache.rocketmq:rocketmq-client:4.3.0'
+compile 'org.apache.rocketmq:rocketmq-client:5.5.0'
```
### 2 发送消息
##### 2.1 使用Producer发送同步消息
diff --git a/docs/cn/RocketMQ_Example.md b/docs/cn/RocketMQ_Example.md
index 77c1bd7b27..12f637cad3 100644
--- a/docs/cn/RocketMQ_Example.md
+++ b/docs/cn/RocketMQ_Example.md
@@ -54,12 +54,12 @@
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client</artifactId>
- <version>4.9.1</version>
+ <version>5.5.0</version>
</dependency>
```
`gradle`
```
-compile 'org.apache.rocketmq:rocketmq-client:4.3.0'
+compile 'org.apache.rocketmq:rocketmq-client:5.5.0'
```
### 1.2 消息发送