release 2.10.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc72b6c..3eca895 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@
 
 # Table of Contents
 
+- [2.10.0](#2100)
 - [2.9.0](#290)
 - [2.8.0](#280)
 - [2.7.1](#271)
@@ -35,6 +36,31 @@
 - [1.5.0](#150)
 - [1.0.0](#100)
 
+# 2.10.0
+
+This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.11.0.
+
+### Core
+
+- feat: basic support Apache APISIX 2.11 [#2233](https://github.com/apache/apisix-dashboard/pull/2233)
+- feat: support post args advanced match [#2231](https://github.com/apache/apisix-dashboard/pull/2231)
+- feat: Setting default language to english in APISIX Dashboard [#2212](https://github.com/apache/apisix-dashboard/pull/2212)
+- feat: add gzip middleware [#2178](https://github.com/apache/apisix-dashboard/pull/2178)
+- feat: add Type function to store interface [#2160](https://github.com/apache/apisix-dashboard/pull/2160)
+
+### Bugfix
+
+- fix: cp consumer name regx different with dp [#2232](https://github.com/apache/apisix-dashboard/pull/2232)
+- fix: plugin_configs should store with etcd prefix [#2226](https://github.com/apache/apisix-dashboard/pull/2226)
+- fix: correct the property name for tcp_failures [#2221](https://github.com/apache/apisix-dashboard/pull/2221)
+- fix: login repeat 2 times [#2179](https://github.com/apache/apisix-dashboard/pull/2179)
+- fix: select Use the domain or IP from Node List [#2168](https://github.com/apache/apisix-dashboard/pull/2168)
+
+### CI
+
+- ci: clean up the E2E test environment [#2225](https://github.com/apache/apisix-dashboard/pull/2225)
+- ci: add issue stale processor [#2169](https://github.com/apache/apisix-dashboard/pull/2169)
+
 # 2.9.0
 
 This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.10.0.
diff --git a/README.md b/README.md
index dc0569d..e97c6c3 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@
 
 - The master version should be used with Apache APISIX master version.
 
-- The latest released version is [2.9.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.10.0](https://apisix.apache.org/downloads/).
+- The latest released version is [2.10.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.11.0](https://apisix.apache.org/downloads/).
 
 ## What's Apache APISIX Dashboard
 
diff --git a/api/VERSION b/api/VERSION
index c8e38b6..10c2c0c 100644
--- a/api/VERSION
+++ b/api/VERSION
@@ -1 +1 @@
-2.9.0
+2.10.0
diff --git a/docs/en/latest/config.json b/docs/en/latest/config.json
index 9c1869d..5b66c37 100644
--- a/docs/en/latest/config.json
+++ b/docs/en/latest/config.json
@@ -1,5 +1,5 @@
 {
-  "version": "2.9.0",
+  "version": "2.10.0",
   "sidebar": [
     {
       "type": "category",
diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md
index b0102fe..23fb767 100644
--- a/docs/en/latest/develop.md
+++ b/docs/en/latest/develop.md
@@ -30,7 +30,7 @@
 ## Clone the project
 
 ```sh
-$ git clone -b release/2.9.0 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.10.0 https://github.com/apache/apisix-dashboard.git
 ```
 
 ## Start developing
diff --git a/docs/en/latest/install.md b/docs/en/latest/install.md
index bd3d110..97ffda9 100644
--- a/docs/en/latest/install.md
+++ b/docs/en/latest/install.md
@@ -48,7 +48,7 @@
 
 ```shell
 # 1. install RPM package
-sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.9.0/apisix-dashboard-2.9.0-0.el7.x86_64.rpm
+sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.10.0/apisix-dashboard-2.10.0-0.el7.x86_64.rpm
 ```
 
 ### Launch
@@ -91,7 +91,7 @@
 ### Download {#source-download}
 
 ```shell
-git clone -b release/2.9.0 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard
+git clone -b release/2.10.0 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard
 ```
 
 ### Build {#source-build}
diff --git a/web/package.json b/web/package.json
index 7522c6f..888617c 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
 {
   "name": "apisix-dashboard",
-  "version": "2.9.0",
+  "version": "2.10.0",
   "private": true,
   "description": "Dashboard for Apache APISIX",
   "scripts": {