mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-02 04:08:31 +08:00
[release][doc] Add release 3.0.1 (#12139)
* add release 3.0.1 * add 30x version in the github bug report
This commit is contained in:
parent
779a0b9c75
commit
4269fa7ea7
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@ -99,7 +99,7 @@ body:
|
||||
Which version of Apache DolphinScheduler are you running? We only accept bugs report from the LTS projects.
|
||||
options:
|
||||
- dev
|
||||
- 3.0.0
|
||||
- 3.0.x
|
||||
- 2.0.6
|
||||
- 2.0.5
|
||||
validations:
|
||||
|
@ -44,6 +44,7 @@ import docs203Config from '../../../site_config/docs2-0-3';
|
||||
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 docsDevConfig from '../../../site_config/docsdev';
|
||||
|
||||
const docsSource = {
|
||||
@ -64,6 +65,7 @@ const docsSource = {
|
||||
'2.0.5': docs205Config,
|
||||
'2.0.6': docs206Config,
|
||||
'3.0.0': docs300Config,
|
||||
'3.0.1': docs301Config,
|
||||
dev: docsDevConfig,
|
||||
};
|
||||
|
||||
|
@ -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.0',
|
||||
docsLatest: '3.0.1',
|
||||
defaultSearch: 'google', // default search engine
|
||||
defaultLanguage: 'en-us',
|
||||
'en-us': {
|
||||
@ -45,7 +45,7 @@ export default {
|
||||
children: [
|
||||
{
|
||||
key: 'docs0',
|
||||
text: 'latest(3.0.0)',
|
||||
text: 'latest(3.0.1)',
|
||||
link: '/en-us/docs/latest/user_doc/about/introduction.html',
|
||||
},
|
||||
{
|
||||
@ -168,7 +168,7 @@ export default {
|
||||
children: [
|
||||
{
|
||||
key: 'docs0',
|
||||
text: '最新版本latest(3.0.0)',
|
||||
text: '最新版本latest(3.0.1)',
|
||||
link: '/zh-cn/docs/latest/user_doc/about/introduction.html',
|
||||
},
|
||||
{
|
||||
|
@ -491,11 +491,10 @@ the release version is `<VERSION>`, the following updates are required(note it w
|
||||
- Repository **apache/dolphinscheduler-website**:
|
||||
- `download/en-us/download.md` and `download/zh-cn/download.md`: add the download of the `<VERSION>` release package
|
||||
- `scripts/conf.sh`: Add new release version `<VERSION>` key-value pair to variable `DEV_RELEASE_DOCS_VERSIONS`
|
||||
- Repository **apache/dolphinscheduler**:
|
||||
- Repository **apache/dolphinscheduler** (dev branch):
|
||||
- `docs/configs/site.js`:
|
||||
- `docsLatest`: update to `<VERSION>`
|
||||
- `docs0`: The `text` of two places of `en-us/zh-cn` needs to be updated to `latest(<VERSION>)`
|
||||
- `docsxyz`: Add a drop-down menu with `key` as `docsxyz` and `text` as `<VERSION>` in `children` of two places of `en-us/zh-cn`
|
||||
- `docs/configs/index.md.jsx`: Add `<VERSION>: docsxyzConfig`
|
||||
- `docs/docs/en/history-versions.md` and `docs/docs/zh/history-versions.md`: Add new `<VERSION>` release docs.
|
||||
- `.github/ISSUE_TEMPLATE/bug-report.yml`: DolphinScheduler's GitHub [bug-report](https://github.com/apache/dolphinscheduler/blob/dev/.github/ISSUE_TEMPLATE/bug-report.yml)
|
||||
|
@ -4,6 +4,10 @@
|
||||
|
||||
#### Setup instructions, are available for each stable version of Apache DolphinScheduler below:
|
||||
|
||||
### Versions: 3.0.1
|
||||
|
||||
#### Links: [3.0.1 Document](../3.0.1/user_doc/about/introduction.md)
|
||||
|
||||
### Versions: 3.0.0
|
||||
|
||||
#### Links: [3.0.0 Document](../3.0.0/user_doc/about/introduction.md)
|
||||
|
@ -488,11 +488,10 @@ svn --username="${A_USERNAME}" commit -m "new key <YOUR-GPG-KEY-ID> add"
|
||||
- **apache/dolphinscheduler-website** 仓库:
|
||||
- `download/en-us/download.md` 和 `download/zh-cn/download.md`: 增加 `<VERSION>` 版本发布包的下载
|
||||
- `scripts/conf.sh`: 在变量 `DEV_RELEASE_DOCS_VERSIONS` 中增加版本为 `<VERSION>` 的新键值对
|
||||
- **apache/dolphinscheduler** 仓库:
|
||||
- **apache/dolphinscheduler** 仓库 (dev 分支):
|
||||
- `docs/configs/site.js`:
|
||||
- `docsLatest`: 更新为 `<VERSION>`
|
||||
- `docs0`: 两处 `en-us/zh-cn` 的 `text` 更新为 `latest(<VERSION>)`
|
||||
- `docsxyz`: 两处 `en-us/zh-cn` 的 `children` 增加 `key` 为 `docsxyz`, `text` 为 `<VERSION>` 的下拉菜单
|
||||
- `docs/configs/index.md.jsx`: 增加 `'<VERSION>': docsxyzConfig,`
|
||||
- `docs/docs/en/history-versions.md` 和 `docs/docs/zh/history-versions.md`: 增加新的发版版本 `<VERSION>` 的链接
|
||||
- `.github/ISSUE_TEMPLATE/bug-report.yml`: DolphinScheduler 在 GitHub issue 中有版本选择的部分,当有新版本发版后,需要更新这部分的内容。目前与版本关联的是
|
||||
|
@ -4,6 +4,10 @@
|
||||
|
||||
#### 以下是Apache DolphinScheduler每个稳定版本的设置说明。
|
||||
|
||||
### Versions: 3.0.1
|
||||
|
||||
#### Links: [3.0.1 文档](../3.0.1/user_doc/about/introduction.md)
|
||||
|
||||
### Versions: 3.0.0
|
||||
|
||||
#### Links: [3.0.0 文档](../3.0.0/user_doc/about/introduction.md)
|
||||
|
Loading…
Reference in New Issue
Block a user