doc: v1.1 build guide
diff --git a/doc/how-to-build-cn.md b/doc/how-to-build-cn.md
index b630286..2da7b95 100644
--- a/doc/how-to-build-cn.md
+++ b/doc/how-to-build-cn.md
@@ -32,20 +32,20 @@
 你需要先下载 Apache Release 源码包:
 
 ```shell
-wget http://www.apache.org/dist/incubator/apisix/1.0/apache-apisix-1.0-incubating-src.tar.gz
-tar zxvf apache-apisix-1.0-incubating-src.tar.gz
+wget http://www.apache.org/dist/incubator/apisix/1.1/apache-apisix-1.1-incubating-src.tar.gz
+tar zxvf apache-apisix-1.1-incubating-src.tar.gz
 ```
 
 安装运行时依赖的 Lua 库:
 ```
-cd apache-apisix-1.0-incubating
+cd apache-apisix-1.1-incubating
 make deps
 ```
 
 ### 通过 RPM 包安装(CentOS 7)
 
 ```shell
-sudo yum install -y https://github.com/apache/incubator-apisix/releases/download/1.0/apisix-1.0-0.el7.noarch.rpm
+sudo yum install -y https://github.com/apache/incubator-apisix/releases/download/1.1/apisix-1.1-0.el7.noarch.rpm
 ```
 
 ### 通过 Luarocks 安装 (不支持 macOS)
@@ -61,11 +61,11 @@
 > 通过 Luarocks 安装指定的版本:
 
 ```shell
-# 安装 apisix 的 1.0 版本
-sudo luarocks install --lua-dir=/path/openresty/luajit apisix 1.0
+# 安装 apisix 的 1.1 版本
+sudo luarocks install --lua-dir=/path/openresty/luajit apisix 1.1
 
 # 老版本 luarocks 可能不支持 `lua-dir` 参数,可以删除该选项
-sudo luarocks install apisix 1.0
+sudo luarocks install apisix 1.1
 ```
 
 ## 3. 管理(启动、关闭等)APISIX 服务
diff --git a/doc/how-to-build.md b/doc/how-to-build.md
index 4675629..8774f4b 100644
--- a/doc/how-to-build.md
+++ b/doc/how-to-build.md
@@ -33,20 +33,20 @@
 You need to download the Apache source release first:
 
 ```shell
-wget http://www.apache.org/dist/incubator/apisix/1.0/apache-apisix-1.0-incubating-src.tar.gz
-tar zxvf apache-apisix-1.0-incubating-src.tar.gz
+wget http://www.apache.org/dist/incubator/apisix/1.1/apache-apisix-1.1-incubating-src.tar.gz
+tar zxvf apache-apisix-1.1-incubating-src.tar.gz
 ```
 
 Install the Lua libraries that the runtime depends on:
 ```shell
-cd apache-apisix-1.0-incubating
+cd apache-apisix-1.1-incubating
 make deps
 ```
 
 ### Installation via RPM package (CentOS 7)
 
 ```shell
-sudo yum install -y https://github.com/apache/incubator-apisix/releases/download/1.0/apisix-1.0-0.el7.noarch.rpm
+sudo yum install -y https://github.com/apache/incubator-apisix/releases/download/1.1/apisix-1.1-0.el7.noarch.rpm
 ```
 
 ### Installation via Luarocks (macOS not supported)
@@ -62,11 +62,11 @@
 > Install the specified version via Luarocks:
 
 ```shell
-# Install version 1.0
-sudo luarocks install --lua-dir=/path/openresty/luajit apisix 1.0
+# Install version 1.1
+sudo luarocks install --lua-dir=/path/openresty/luajit apisix 1.1
 
 # old luarocks not support the `lua-dir` parameter, you can remove this option
-sudo luarocks install apisix 1.0
+sudo luarocks install apisix 1.1
 ```
 
 ## Manage (start/stop) APISIX Server