This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/pinot-site.git
The following commit(s) were added to refs/heads/dev by this push: new 432562c Update website download page to include 0.8.0 release new 6c30a73 Merge pull request #57 from snleee/0.8.0-website-update 432562c is described below commit 432562c294faa56581137ce76452495fc310cd42 Author: Seunghyun Lee <sn...@linkedin.com> AuthorDate: Mon Aug 23 18:44:16 2021 -0700 Update website download page to include 0.8.0 release --- website/package.json | 4 +++- website/src/pages/download.js | 44 +++++++++++++++++++++++++++++++++++++++++++ website/src/pages/index.js | 8 ++++---- 3 files changed, 51 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 3391d89..2fbb54b 100755 --- a/website/package.json +++ b/website/package.json @@ -28,9 +28,11 @@ "color": "^3.1.3", "d3-timer": "^2.0.0", "dateformat": "^4.5.1", + "docusaurus": "^1.14.7", "humanize-string": "^2.1.0", "now": "^20.1.4", "pluralize": "^8.0.0", + "postcss": "^8.3.6", "prismjs": "^1.23.0", "qs": "^6.10.1", "react": "^17.0.2", @@ -57,7 +59,7 @@ "eslint": "7.24.0", "prettier": "2.2.1", "typescript": "^4.2.4", - "yarn": "^1.22.10" + "yarn": "^1.22.11" }, "resolutions": { "**/sharp": "^0.25.2" diff --git a/website/src/pages/download.js b/website/src/pages/download.js index b21744c..c83b42d 100644 --- a/website/src/pages/download.js +++ b/website/src/pages/download.js @@ -51,6 +51,50 @@ function Download() { <div className="row"> <div className="col"> <a + href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-bin.tar.gz" + className="panel panel--link text--center" + > + <div className="panel--icon"> + <i className="feather icon-download"></i> + </div> + + <div className="panel--title">0.8.0</div> + + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-src.tar.gz"> + <div className="panel--title"> + Official source release + </div> + </a> + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-src.tar.gz.sha512"> + <div className="panel--subtitle"> + SHA512 + </div> + </a> + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-src.tar.gz.asc"> + <div className="panel--subtitle"> + ASC + </div> + </a> + + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-bin.tar.gz"> + <div className="panel--title"> + Binary download + </div> + </a> + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-bin.tar.gz.sha512"> + <div className="panel--subtitle"> + SHA512 + </div> + </a> + <a href="https://downloads.apache.org/pinot/apache-pinot-0.8.0/apache-pinot-0.8.0-bin.tar.gz.asc"> + <div className="panel--subtitle"> + ASC{" "} + </div> + </a> + </a> + </div> + <div className="col"> + <a href="https://downloads.apache.org/pinot/apache-pinot-incubating-0.7.1/apache-pinot-incubating-0.7.1-bin.tar.gz" className="panel panel--link text--center" > diff --git a/website/src/pages/index.js b/website/src/pages/index.js index f1fb39e..7b69da8 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -337,12 +337,12 @@ function Installation() { </TabItem> <TabItem value="binary"> <CodeBlock className="language-bash"> - {`VERSION=0.7.1\nwget https://downloads.apache.org/pinot/apache-pinot-incubating-$VERSION/apache-pinot-incubating-$VERSION-bin.tar.gz\ntar vxf apache-pinot-incubating-*-bin.tar.gz\ncd apache-pinot-incubating-*-bin\nbin/quick-start-batch.sh`} + {`VERSION=0.8.0\nwget https://downloads.apache.org/pinot/apache-pinot-$VERSION/apache-pinot-$VERSION-bin.tar.gz\ntar vxf apache-pinot-*-bin.tar.gz\ncd apache-pinot-*-bin\nbin/quick-start-batch.sh`} </CodeBlock> </TabItem> <TabItem value="github"> <CodeBlock className="language-bash"> - {`# Clone a repo\ngit clone https://github.com/apache/pinot.git\ncd pinot\n\n# Build Pinot\nmvn clean install -DskipTests -Pbin-dist\n\n# Run the Quick Demo\ncd pinot-distribution/target/apache-pinot-incubating-*-SNAPSHOT-bin/apache-pinot-incubating-*-SNAPSHOT-bin\nbin/quick-start-batch.sh`} + {`# Clone a repo\ngit clone https://github.com/apache/pinot.git\ncd pinot\n\n# Build Pinot\nmvn clean install -DskipTests -Pbin-dist\n\n# Run the Quick Demo\ncd pinot-distribution/target/apache-pinot-*-SNAPSHOT-bin/apache-pinot-*-SNAPSHOT-bin\nbin/quick-start-batch.sh`} </CodeBlock> </TabItem> </Tabs> @@ -451,11 +451,11 @@ function Home() { > <div className="container"> <Link - to="https://docs.pinot.apache.org/basics/releases/0.7.1" + to="https://docs.pinot.apache.org/basics/releases/0.8.0" className={styles.indexAnnouncement} > <span className="badge badge-primary">release</span> - v0.7.1 has been released! Check the release notes + v0.8.0 has been released! Check the release notes </Link> <h1 className="hero__title">{siteConfig.title}</h1> <p className="hero__subtitle"> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org