From a055cf5791eeee4ee747e6aaddf961efb78d54ae Mon Sep 17 00:00:00 2001 From: caishunfeng Date: Fri, 30 Sep 2022 12:14:29 +0800 Subject: [PATCH] [Release][Doc] add 3.1.0 release (#12227) * [Release] add 3.1.0 release to doc --- .github/ISSUE_TEMPLATE/bug-report.yml | 4 ++-- docs/configs/index.md.jsx | 2 ++ docs/configs/site.js | 16 +++++++++++++--- docs/docs/en/history-versions.md | 4 ++++ docs/docs/zh/history-versions.md | 4 ++++ 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index a727bf3ce..c81c52685 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -99,9 +99,9 @@ body: Which version of Apache DolphinScheduler are you running? We only accept bugs report from the LTS projects. options: - dev + - 3.1.x - 3.0.x - - 2.0.6 - - 2.0.5 + - 2.0.x validations: required: true diff --git a/docs/configs/index.md.jsx b/docs/configs/index.md.jsx index 173dc12a3..7a6a05591 100644 --- a/docs/configs/index.md.jsx +++ b/docs/configs/index.md.jsx @@ -45,6 +45,7 @@ import docs205Config from '../../../site_config/docs2-0-5'; import docs206Config from '../../../site_config/docs2-0-6'; import docs300Config from '../../../site_config/docs3-0-0'; import docs301Config from '../../../site_config/docs3-0-1'; +import docs310Config from '../../../site_config/docs3-1-0'; import docsDevConfig from '../../../site_config/docsdev'; const docsSource = { @@ -66,6 +67,7 @@ const docsSource = { '2.0.6': docs206Config, '3.0.0': docs300Config, '3.0.1': docs301Config, + '3.1.0': docs310Config, dev: docsDevConfig, }; diff --git a/docs/configs/site.js b/docs/configs/site.js index 91d3ce68e..cb2c36633 100644 --- a/docs/configs/site.js +++ b/docs/configs/site.js @@ -24,7 +24,7 @@ export default { port: 8080, domain: 'dolphinscheduler.apache.org', copyToDist: ['asset', 'img', 'file', '.asf.yaml', 'sitemap.xml', '.nojekyll', '.htaccess', 'googled0df7b96f277a143.html'], - docsLatest: '3.0.1', + docsLatest: '3.1.0', defaultSearch: 'google', // default search engine defaultLanguage: 'en-us', 'en-us': { @@ -45,11 +45,16 @@ export default { children: [ { key: 'docs0', - text: 'latest(3.0.1)', + text: 'latest(3.1.0)', link: '/en-us/docs/latest/user_doc/about/introduction.html', }, { key: 'docs1', + text: '3.0.1', + link: '/en-us/docs/3.0.1/user_doc/guide/quick-start.html', + }, + { + key: 'docs2', text: '2.0.6', link: '/en-us/docs/2.0.6/user_doc/guide/quick-start.html', }, @@ -168,11 +173,16 @@ export default { children: [ { key: 'docs0', - text: '最新版本latest(3.0.1)', + text: '最新版本latest(3.1.0)', link: '/zh-cn/docs/latest/user_doc/about/introduction.html', }, { key: 'docs1', + text: '3.0.1', + link: '/zh-cn/docs/3.0.1/user_doc/about/introduction.html', + }, + { + key: 'docs2', text: '2.0.6', link: '/zh-cn/docs/2.0.6/user_doc/guide/quick-start.html', }, diff --git a/docs/docs/en/history-versions.md b/docs/docs/en/history-versions.md index 872df06f1..2803339f0 100644 --- a/docs/docs/en/history-versions.md +++ b/docs/docs/en/history-versions.md @@ -4,6 +4,10 @@ #### Setup instructions, are available for each stable version of Apache DolphinScheduler below: +### Versions: 3.1.0 + +#### Links: [3.1.0 Document](../3.1.0/user_doc/about/introduction.md) + ### Versions: 3.0.1 #### Links: [3.0.1 Document](../3.0.1/user_doc/about/introduction.md) diff --git a/docs/docs/zh/history-versions.md b/docs/docs/zh/history-versions.md index d35edaf77..d60ab5674 100644 --- a/docs/docs/zh/history-versions.md +++ b/docs/docs/zh/history-versions.md @@ -4,6 +4,10 @@ #### 以下是Apache DolphinScheduler每个稳定版本的设置说明。 +### Versions: 3.1.0 + +#### Links: [3.1.0 文档](../3.1.0/user_doc/about/introduction.md) + ### Versions: 3.0.1 #### Links: [3.0.1 文档](../3.0.1/user_doc/about/introduction.md) -- GitLab