From ee6335523be79d803a4849855d46a8e30df5aa87 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Thu, 10 Aug 2023 10:12:01 +0800 Subject: [PATCH] [Docs] remove `incubating` keyword in document --- DISCLAIMER | 2 +- docs/en/start-v2/locally/deployment.md | 4 ++-- docs/en/start-v2/locally/quick-start-flink.md | 4 ++-- docs/en/start-v2/locally/quick-start-seatunnel-engine.md | 2 +- docs/en/start-v2/locally/quick-start-spark.md | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DISCLAIMER b/DISCLAIMER index fac720f1f3e..517e33ffafa 100644 --- a/DISCLAIMER +++ b/DISCLAIMER @@ -1,4 +1,4 @@ -Apache SeaTunnel (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache SeaTunnel is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, diff --git a/docs/en/start-v2/locally/deployment.md b/docs/en/start-v2/locally/deployment.md index 6f82a9d8489..1e5c0f9ed62 100644 --- a/docs/en/start-v2/locally/deployment.md +++ b/docs/en/start-v2/locally/deployment.md @@ -23,8 +23,8 @@ Or you can download it by terminal ```shell export version="2.3.2" -wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-incubating-${version}-bin.tar.gz" -tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz" +wget "https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-${version}-bin.tar.gz" +tar -xzvf "apache-seatunnel-${version}-bin.tar.gz" ``` diff --git a/docs/en/start-v2/locally/quick-start-flink.md b/docs/en/start-v2/locally/quick-start-flink.md index cf01a0fccdb..9fd9f1eb43d 100644 --- a/docs/en/start-v2/locally/quick-start-flink.md +++ b/docs/en/start-v2/locally/quick-start-flink.md @@ -68,14 +68,14 @@ You could start the application by the following commands flink version between `1.12.x` and `1.14.x` ```shell -cd "apache-seatunnel-incubating-${version}" +cd "apache-seatunnel-${version}" ./bin/start-seatunnel-flink-13-connector-v2.sh --config ./config/v2.streaming.conf.template ``` flink version between `1.15.x` and `1.16.x` ```shell -cd "apache-seatunnel-incubating-${version}" +cd "apache-seatunnel-${version}" ./bin/start-seatunnel-flink-15-connector-v2.sh --config ./config/v2.streaming.conf.template ``` diff --git a/docs/en/start-v2/locally/quick-start-seatunnel-engine.md b/docs/en/start-v2/locally/quick-start-seatunnel-engine.md index db998897027..f469c570e3a 100644 --- a/docs/en/start-v2/locally/quick-start-seatunnel-engine.md +++ b/docs/en/start-v2/locally/quick-start-seatunnel-engine.md @@ -59,7 +59,7 @@ More information about config please check [config concept](../../concept/config You could start the application by the following commands ```shell -cd "apache-seatunnel-incubating-${version}" +cd "apache-seatunnel-${version}" ./bin/seatunnel.sh --config ./config/v2.batch.config.template -e local ``` diff --git a/docs/en/start-v2/locally/quick-start-spark.md b/docs/en/start-v2/locally/quick-start-spark.md index 88aebd5aa43..903217c8ec1 100644 --- a/docs/en/start-v2/locally/quick-start-spark.md +++ b/docs/en/start-v2/locally/quick-start-spark.md @@ -69,7 +69,7 @@ You could start the application by the following commands spark 2.4.x ```bash -cd "apache-seatunnel-incubating-${version}" +cd "apache-seatunnel-${version}" ./bin/start-seatunnel-spark-2-connector-v2.sh \ --master local[4] \ --deploy-mode client \ @@ -79,7 +79,7 @@ cd "apache-seatunnel-incubating-${version}" spark3.x.x ```shell -cd "apache-seatunnel-incubating-${version}" +cd "apache-seatunnel-${version}" ./bin/start-seatunnel-spark-3-connector-v2.sh \ --master local[4] \ --deploy-mode client \