chore: release APISIX 3.14.1 (#607)

diff --git a/.github/workflows/apisix-docker-example-test-standalone.yaml b/.github/workflows/apisix-docker-example-test-standalone.yaml
index 9ac8015..6bd61cf 100644
--- a/.github/workflows/apisix-docker-example-test-standalone.yaml
+++ b/.github/workflows/apisix-docker-example-test-standalone.yaml
@@ -14,7 +14,7 @@
       - 'release/apisix-2.15.**'
 
 env:
-  APISIX_VERSION: "3.14.0"
+  APISIX_VERSION: "3.14.1"
 
 jobs:
   prepare:
diff --git a/.github/workflows/apisix-docker-example-test.yaml b/.github/workflows/apisix-docker-example-test.yaml
index 074c151..ae69d39 100644
--- a/.github/workflows/apisix-docker-example-test.yaml
+++ b/.github/workflows/apisix-docker-example-test.yaml
@@ -14,7 +14,7 @@
       - 'release/apisix-2.15.**'
 
 env:
-  APISIX_VERSION: "3.14.0"
+  APISIX_VERSION: "3.14.1"
 
 jobs:
   prepare:
diff --git a/.github/workflows/apisix_push_docker_hub.yaml b/.github/workflows/apisix_push_docker_hub.yaml
index ca57f2e..dede669 100644
--- a/.github/workflows/apisix_push_docker_hub.yaml
+++ b/.github/workflows/apisix_push_docker_hub.yaml
@@ -19,7 +19,7 @@
           - debian
           - redhat
     env:
-      APISIX_DOCKER_TAG: 3.14.0-${{ matrix.platform }}
+      APISIX_DOCKER_TAG: 3.14.1-${{ matrix.platform }}
 
     steps:
       - name: Check out the repo
diff --git a/Makefile b/Makefile
index 4ea951f..3341526 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,8 @@
 
 
 # APISIX ARGS
-APISIX_VERSION ?= 3.14.0
-MAX_APISIX_VERSION ?= 3.14.0
+APISIX_VERSION ?= 3.14.1
+MAX_APISIX_VERSION ?= 3.14.1
 IMAGE_NAME = apache/apisix
 IMAGE_TAR_NAME = apache_apisix
 APISIX_REPO = https://github.com/apache/apisix
diff --git a/debian/Dockerfile b/debian/Dockerfile
index 97a238b..706b250 100644
--- a/debian/Dockerfile
+++ b/debian/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM debian:bullseye-slim
 
-ARG APISIX_VERSION=3.14.0
+ARG APISIX_VERSION=3.14.1
 
 RUN set -ex; \
     arch=$(dpkg --print-architecture); \
diff --git a/docs/en/latest/build.md b/docs/en/latest/build.md
index 139abc3..89a3168 100644
--- a/docs/en/latest/build.md
+++ b/docs/en/latest/build.md
@@ -43,7 +43,7 @@
 Build a Docker image from the release:
 
 ```shell
-APISIX_VERSION=3.14.0   # specify release version
+APISIX_VERSION=3.14.1   # specify release version
 DISTRO=debian           # debian, redhat
 make build-on-$DISTRO
 ```
diff --git a/example/docker-compose-arm64.yml b/example/docker-compose-arm64.yml
index 7e147e2..992ed05 100644
--- a/example/docker-compose-arm64.yml
+++ b/example/docker-compose-arm64.yml
@@ -19,7 +19,7 @@
 
 services:
   apisix:
-    image: apache/apisix:3.14.0-debian
+    image: apache/apisix:3.14.1-debian
     restart: always
     volumes:
       - ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
diff --git a/example/docker-compose-standalone.yml b/example/docker-compose-standalone.yml
index 6a1b86e..a79fa8e 100644
--- a/example/docker-compose-standalone.yml
+++ b/example/docker-compose-standalone.yml
@@ -19,7 +19,7 @@
 
 services:
   apisix:
-    image: apache/apisix:${APISIX_IMAGE_TAG:-3.14.0-debian}
+    image: apache/apisix:${APISIX_IMAGE_TAG:-3.14.1-debian}
     restart: always
     volumes:
       - ./apisix_conf/apisix-standalone.yaml:/usr/local/apisix/conf/apisix.yaml:ro
diff --git a/example/docker-compose.yml b/example/docker-compose.yml
index 4d12836..9571c24 100644
--- a/example/docker-compose.yml
+++ b/example/docker-compose.yml
@@ -19,7 +19,7 @@
 
 services:
   apisix:
-    image: apache/apisix:${APISIX_IMAGE_TAG:-3.14.0-debian}
+    image: apache/apisix:${APISIX_IMAGE_TAG:-3.14.1-debian}
     restart: always
     volumes:
       - ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
diff --git a/redhat/Dockerfile b/redhat/Dockerfile
index 5415d45..107ff39 100644
--- a/redhat/Dockerfile
+++ b/redhat/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM registry.access.redhat.com/ubi9/ubi:9.6
 
-ARG APISIX_VERSION=3.14.0
+ARG APISIX_VERSION=3.14.1
 LABEL apisix_version="${APISIX_VERSION}"
 COPY ./yum.repos.d/apache-apisix.repo /etc/yum.repos.d/apache-apisix.repo
 COPY ./yum.repos.d/openresty.repo /etc/yum.repos.d/openresty.repo
diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile
index fd33816..c4e8ac9 100644
--- a/ubuntu/Dockerfile
+++ b/ubuntu/Dockerfile
@@ -17,7 +17,7 @@
 
 FROM ubuntu:24.04
 
-ARG APISIX_VERSION=3.14.0
+ARG APISIX_VERSION=3.14.1
 
 RUN set -ex; \
     arch=$(dpkg --print-architecture); \