diff --git a/CHANGELOG.md b/CHANGELOG.md
index 941ba3b5..e2215b8a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,10 +23,20 @@ title: Changelog
## Table of Contents
+- [0.4.0](#040)
- [0.3.0](#030)
- [0.2.0](#020)
- [0.1.0](#010)
+## 0.4.0
+
+This release mainly provides the ability to get body data from upstream.
+
+### Core
+
+- support for getting upstream response body. [200](https://github.com/apache/apisix-java-plugin-runner/pull/200)
+- support watching config changes. [205](https://github.com/apache/apisix-java-plugin-runner/pull/208)
+
## 0.3.0
This release mainly provides the ability to get headers from upstream, and support download the project from Maven Center.
diff --git a/Makefile b/Makefile
index a932f321..50b6c5a4 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@
SHELL := /bin/bash -o pipefail
-VERSION ?= 0.3.0
+VERSION ?= 0.4.0
RELEASE_SRC = apisix-java-plugin-runner-${VERSION}-src
.PHONY: release-src
diff --git a/README.md b/README.md
index b680d2a9..e96e2d69 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,7 @@ Version Matrix
| 0.1.0 | >= [2.7.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#270) |
| 0.2.0 | >= [2.12.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2102) |
| 0.3.0 | >= [2.15.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2150) |
+| 0.4.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
How it Works
-------------
diff --git a/docs/en/latest/installation-guide.md b/docs/en/latest/installation-guide.md
index 5a4b58ce..833afdda 100644
--- a/docs/en/latest/installation-guide.md
+++ b/docs/en/latest/installation-guide.md
@@ -48,7 +48,7 @@ Install
org.apache.apisix
apisix-runner-starter
- 0.3.1-SNAPSHOT
+ 0.4.0
```
diff --git a/pom.xml b/pom.xml
index 0d0ca540..3495afd5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
org.apache
diff --git a/runner-core/pom.xml b/runner-core/pom.xml
index f61a7397..ee178c5f 100644
--- a/runner-core/pom.xml
+++ b/runner-core/pom.xml
@@ -24,7 +24,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-core
@@ -36,7 +36,7 @@
org.apache.apisix
apisix-runner-plugin-sdk
- 0.3.1-SNAPSHOT
+ 0.4.0
org.springframework.boot
diff --git a/runner-dist/apisix-runner-bin-dist/pom.xml b/runner-dist/apisix-runner-bin-dist/pom.xml
index 69505d21..d3930635 100644
--- a/runner-dist/apisix-runner-bin-dist/pom.xml
+++ b/runner-dist/apisix-runner-bin-dist/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-runner-dist
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-bin-dist
diff --git a/runner-dist/apisix-runner-src-dist/pom.xml b/runner-dist/apisix-runner-src-dist/pom.xml
index a8b3ee6b..212d9cec 100644
--- a/runner-dist/apisix-runner-src-dist/pom.xml
+++ b/runner-dist/apisix-runner-src-dist/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-runner-dist
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-src-dist
diff --git a/runner-dist/pom.xml b/runner-dist/pom.xml
index 558b3b55..1aa63b1c 100644
--- a/runner-dist/pom.xml
+++ b/runner-dist/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-dist
@@ -35,7 +35,7 @@
org.apache.apisix
apisix-runner-starter
- 0.3.1-SNAPSHOT
+ 0.4.0
diff --git a/runner-plugin-sdk/pom.xml b/runner-plugin-sdk/pom.xml
index 065e5a72..44108d46 100644
--- a/runner-plugin-sdk/pom.xml
+++ b/runner-plugin-sdk/pom.xml
@@ -24,7 +24,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-plugin-sdk
diff --git a/runner-plugin/pom.xml b/runner-plugin/pom.xml
index 5e1b2f07..f2e2acb0 100644
--- a/runner-plugin/pom.xml
+++ b/runner-plugin/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-plugin
@@ -35,7 +35,7 @@
org.apache.apisix
apisix-runner-plugin-sdk
- 0.3.1-SNAPSHOT
+ 0.4.0
com.google.code.gson
diff --git a/runner-starter/pom.xml b/runner-starter/pom.xml
index 0526bf36..2351c3e1 100644
--- a/runner-starter/pom.xml
+++ b/runner-starter/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-starter
@@ -35,7 +35,7 @@
org.apache.apisix
apisix-runner-core
- 0.3.1-SNAPSHOT
+ 0.4.0
diff --git a/sample/pom.xml b/sample/pom.xml
index 013de5e3..b61e2e3d 100644
--- a/sample/pom.xml
+++ b/sample/pom.xml
@@ -23,7 +23,7 @@
org.apache.apisix
apisix-plugin-runner
- 0.3.1-SNAPSHOT
+ 0.4.0
apisix-runner-sample
@@ -35,7 +35,7 @@
org.apache.apisix
apisix-runner-plugin-sdk
- 0.3.1-SNAPSHOT
+ 0.4.0
com.google.code.gson