diff --git a/README.md b/README.md
index ac11e1ab63..179b74247c 100755
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ If you're using Maven, just add the following dependency in `pom.xml`.
com.alibaba.csp
sentinel-core
- 1.8.9
+ 1.8.10
```
diff --git a/pom.xml b/pom.xml
index 5c1cc2bb6d..37069ee738 100755
--- a/pom.xml
+++ b/pom.xml
@@ -40,7 +40,7 @@
- 1.8.10-SNAPSHOT
+ 1.8.10
1.2.83_noneautotype
1.3.2
diff --git a/sentinel-core/src/main/java/com/alibaba/csp/sentinel/Constants.java b/sentinel-core/src/main/java/com/alibaba/csp/sentinel/Constants.java
index 5fe22beda9..899d872599 100755
--- a/sentinel-core/src/main/java/com/alibaba/csp/sentinel/Constants.java
+++ b/sentinel-core/src/main/java/com/alibaba/csp/sentinel/Constants.java
@@ -31,7 +31,7 @@
*/
public final class Constants {
- public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.9");
+ public static final String SENTINEL_VERSION = VersionUtil.getVersion("1.8.10");
public final static int MAX_CONTEXT_NAME_SIZE = 2000;
public final static int MAX_SLOT_CHAIN_SIZE = 6000;
diff --git a/sentinel-dashboard/Dockerfile b/sentinel-dashboard/Dockerfile
index e02c82c042..a3fde4008d 100644
--- a/sentinel-dashboard/Dockerfile
+++ b/sentinel-dashboard/Dockerfile
@@ -1,6 +1,6 @@
FROM amd64/buildpack-deps:buster-curl as installer
-ARG SENTINEL_VERSION=1.8.9
+ARG SENTINEL_VERSION=1.8.10
RUN set -x \
&& curl -SL --output /home/sentinel-dashboard.jar https://github.com/alibaba/Sentinel/releases/download/${SENTINEL_VERSION}/sentinel-dashboard-${SENTINEL_VERSION}.jar
diff --git a/sentinel-dashboard/README.md b/sentinel-dashboard/README.md
index 0ba94fe4ab..a3c42ffdd5 100755
--- a/sentinel-dashboard/README.md
+++ b/sentinel-dashboard/README.md
@@ -61,7 +61,7 @@ java -Dserver.port=8080 \
## 6. 构建Docker镜像
```bash
-docker build --build-arg SENTINEL_VERSION=1.8.9 -t ${REGISTRY}/sentinel-dashboard:v1.8.9 .
+docker build --build-arg SENTINEL_VERSION=1.8.10 -t ${REGISTRY}/sentinel-dashboard:v1.8.10 .
```
*注意:Sentinel 控制台目前仅支持单机部署。Sentinel 控制台项目提供 Sentinel 功能全集示例,不作为开箱即用的生产环境控制台,不提供安全可靠保障。若希望在生产环境使用请根据[文档](https://github.com/alibaba/Sentinel/wiki/%E5%9C%A8%E7%94%9F%E4%BA%A7%E7%8E%AF%E5%A2%83%E4%B8%AD%E4%BD%BF%E7%94%A8-Sentinel)自行进行定制和改造。*