This is an automated email from the ASF dual-hosted git repository. luzhijing pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new c0a054fb390 [feat] release apache doris 2.0.5 (#407) c0a054fb390 is described below commit c0a054fb39056c17df49fdef4a595f22ed2ba8f7 Author: velodb-Linjiang <134401306+velodb-linji...@users.noreply.github.com> AuthorDate: Wed Feb 28 10:48:28 2024 +0800 [feat] release apache doris 2.0.5 (#407) Co-authored-by: jeffrey <color.d...@gmail.com> --- src/constant/download.data.ts | 70 ++++++++++++++++++++++++++++++++++++++++++- src/pages/download/index.tsx | 4 +-- 2 files changed, 71 insertions(+), 3 deletions(-) diff --git a/src/constant/download.data.ts b/src/constant/download.data.ts index 7cd7b2d24cb..08971f9d462 100644 --- a/src/constant/download.data.ts +++ b/src/constant/download.data.ts @@ -23,7 +23,7 @@ export enum SuffixEnum { export const ORIGIN = 'https://apache-doris-releases.oss-accelerate.aliyuncs.com/'; export enum VersionEnum { - Latest = '2.0.4', + Latest = '2.0.5', Prev = '1.2.7', // Earlier = '1.1.5', } @@ -32,6 +32,40 @@ export enum DownloadTypeEnum { Source = 'Source', } export const DORIS_VERSIONS: Option[] = [ + { + label: '2.0.5', + value: '2.0.5', + majorVersion: '2.0', + children: [ + { + label: CPUEnum.X64, + value: CPUEnum.X64, + gz: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + { + label: CPUEnum.X64NoAvx2, + value: CPUEnum.X64NoAvx2, + gz: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + { + label: CPUEnum.ARM64, + value: CPUEnum.ARM64, + gz: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + ], + }, { label: '2.0.4', value: '2.0.4', @@ -356,6 +390,40 @@ export const ALL_VERSIONS: AllVersionOption[] = [ label: '2.0', value: '2.0', children: [ + { + label: '2.0.5', + value: '2.0.5', + majorVersion: '2.0', + items: [ + { + label: CPUEnum.X64, + value: CPUEnum.X64, + gz: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-x64.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + { + label: CPUEnum.X64NoAvx2, + value: CPUEnum.X64NoAvx2, + gz: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-x64-noavx2.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + { + label: CPUEnum.ARM64, + value: CPUEnum.ARM64, + gz: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz`, + asc: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.5-bin-arm64.tar.gz.sha512`, + source: 'https://downloads.apache.org/doris/2.0/2.0.5/', + version: '2.0.5', + }, + ], + }, { label: '2.0.4', value: '2.0.4', diff --git a/src/pages/download/index.tsx b/src/pages/download/index.tsx index 903f7418abf..abb8f919d2b 100644 --- a/src/pages/download/index.tsx +++ b/src/pages/download/index.tsx @@ -53,7 +53,7 @@ export default function Download() { const [cpu, setCPU] = useState<string>(CPUEnum.X64); const [downloadInfo, setDownloadInfo] = useState<any>({}); const [downloadType, setDownloadType] = useState(DownloadTypeEnum.Binary); - const [releaseNote, setReleaseNote] = useState('/docs/releasenotes/release-2.0.4'); + const [releaseNote, setReleaseNote] = useState('/docs/releasenotes/release-2.0.5'); const changeVersion = (val: string) => { setVersion(val); @@ -260,7 +260,7 @@ export default function Download() { <LinkWithArrow to={releaseNote} text="Release note" /> </div> <div className="all-download-note"> - Noteļ¼For detailed upgrade precautions, please refer to the{' '} + Note: For detailed upgrade precautions, please refer to the{' '} <Link to="/docs/install/standard-deployment" style={{ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org