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 58d3c03f664 (feature) release 2.0.2 (#313) 58d3c03f664 is described below commit 58d3c03f6649b3126dbe7df77dd645a48c79b43f Author: Jeffrey <color.d...@gmail.com> AuthorDate: Sun Oct 8 10:30:58 2023 +0800 (feature) release 2.0.2 (#313) --- src/constant/download.data.ts | 89 ++++++++++++++++++++++++++++++++++++++++- src/constant/newsletter.data.ts | 4 +- src/pages/download/index.tsx | 6 +-- 3 files changed, 92 insertions(+), 7 deletions(-) diff --git a/src/constant/download.data.ts b/src/constant/download.data.ts index a8f29ff9c85..63e98020b03 100644 --- a/src/constant/download.data.ts +++ b/src/constant/download.data.ts @@ -34,6 +34,69 @@ export function getAllDownloadLinks(locale: string) { const sources = locale.toLocaleUpperCase() === 'EN' ? APACHE_LINK : CHINA_MIRROR_LINK; const shSource = locale.toLocaleUpperCase() === 'EN' ? 'apache' : 'tsinghua'; return [ + { + id: '2.0.2-intel-avx2-jdk8', + sh: { + label: 'apache-doris-2.0.2-bin-x64.tar.gz', + links: { + source: `${ORIGIN}apache-doris-2.0.2-bin-x64.tar.gz`, + signature: `${ORIGIN}apache-doris-2.0.2-bin-x64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.2-bin-x64.tar.gz.sha512`, + }, + }, + items: [ + { + label: 'apache-doris-2.0.2-src.tar.gz', + links: { + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + signature: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.asc`, + sha512: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.sha512`, + }, + }, + ], + }, + { + id: '2.0.2-intel-noavx2-jdk8', + sh: { + label: 'apache-doris-2.0.2-bin-x64-noavx2.tar.gz', + links: { + source: `${ORIGIN}apache-doris-2.0.2-bin-x64-noavx2.tar.gz`, + signature: `${ORIGIN}apache-doris-2.0.2-bin-x64-noavx2.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.2-bin-x64-noavx2.tar.gz.sha512`, + }, + }, + items: [ + { + label: 'apache-doris-2.0.2-src.tar.gz', + links: { + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + signature: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.asc`, + sha512: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.sha512`, + }, + }, + ], + }, + { + id: '2.0.2-arm-jdk8', + sh: { + label: 'apache-doris-2.0.2-bin-arm64.tar.gz', + links: { + source: `${ORIGIN}apache-doris-2.0.2-bin-arm64.tar.gz`, + signature: `${ORIGIN}apache-doris-2.0.2-bin-arm64.tar.gz.asc`, + sha512: `${ORIGIN}apache-doris-2.0.2-bin-arm64.tar.gz.sha512`, + }, + }, + items: [ + { + label: 'apache-doris-2.0.2-src.tar.gz', + links: { + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + signature: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.asc`, + sha512: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz.sha512`, + }, + }, + ], + }, { id: '2.0.1.1-intel-avx2-jdk8', sh: { @@ -322,7 +385,29 @@ export function getAllRelease(locale: string) { const sources = locale.toLocaleUpperCase() === 'EN' ? ALL_RELEASE_LINK : CHINA_ALL_RELEASE_MIRROR_LINK; return [ { - version: '2.0.1.1 ( Latest )', + version: '2.0.2 ( Latest )', + date: '2023-10-07', + note: 'https://github.com/apache/doris/issues/25011', + download: [ + { + cpu: 'X64 ( avx2 )', + binary: `${ORIGIN}apache-doris-2.0.2-bin-x64.tar.gz`, + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + }, + { + cpu: 'X64 ( no avx2 )', + binary: `${ORIGIN}apache-doris-2.0.2-bin-x64-noavx2.tar.gz`, + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + }, + { + cpu: 'ARM64', + binary: `${ORIGIN}apache-doris-2.0.2-bin-arm64.tar.gz`, + source: `https://downloads.apache.org/doris/2.0/2.0.2/apache-doris-2.0.2-src.tar.gz`, + } + ] + }, + { + version: '2.0.1.1', date: '2023-09-26', note: '/docs/dev/releasenotes/release-2.0.1', download: [ @@ -507,7 +592,7 @@ export function getAllRelease(locale: string) { } export enum VersionEnum { - Latest = '2.0.1.1', + Latest = '2.0.2', Prev = '1.2.7.1', Earlier = '1.1.5', } diff --git a/src/constant/newsletter.data.ts b/src/constant/newsletter.data.ts index c8ffd2b19eb..aeb457d2b6b 100644 --- a/src/constant/newsletter.data.ts +++ b/src/constant/newsletter.data.ts @@ -6,8 +6,8 @@ export const NEWSLETTER_DATA = [ }, { tag: 'Release Notes', - title: 'Apache Doris Announced the Official Release of Version 2.0.1.1 ! ', - to: '/docs/dev/releasenotes/release-2.0.1', + title: 'Apache Doris Announced the Official Release of Version 2.0.2 ! ', + to: 'https://github.com/apache/doris/issues/25011', hot: true, }, { diff --git a/src/pages/download/index.tsx b/src/pages/download/index.tsx index 92074c46055..6345823166e 100644 --- a/src/pages/download/index.tsx +++ b/src/pages/download/index.tsx @@ -285,8 +285,8 @@ export default function Download(): JSX.Element { {currentLocale === 'zh-CN' ? ( <div className="notice-text"> 详细升级注意事项请参考 - <Link to="/docs/dev/releasenotes/release-2.0.1"> - 2.0.1.1 Release Note + <Link to="https://github.com/apache/doris/issues/25011"> + 2.0.2 Release Note </Link> 以及 <Link to="/docs/dev/install/standard-deployment"> @@ -303,7 +303,7 @@ export default function Download(): JSX.Element { ) : ( <div className="notice-text"> For detailed upgrade precautions, please refer to the{' '} - <Link to="/docs/dev/releasenotes/release-2.0.1">2.0.1.1</Link> + <Link to="https://github.com/apache/doris/issues/25011">2.0.2</Link> and the <Link to="/docs/dev/install/standard-deployment">deployment</Link> and cluster --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org