This is an automated email from the ASF dual-hosted git repository. jlli pushed a commit to branch update-download-page in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit c398dba7414a74b11cd0db213a117b2c97f31432 Author: Jack Li(Analytics Engineering) <[email protected]> AuthorDate: Tue Nov 17 21:41:27 2020 -0800 Update download page for release 0.6.0 --- website/src/pages/download.js | 44 +++++++++++++++++++++++++++++++++++++++++++ website/src/pages/index.js | 6 +++--- 2 files changed, 47 insertions(+), 3 deletions(-) diff --git a/website/src/pages/download.js b/website/src/pages/download.js index fb6ebc1..a610d3b 100644 --- a/website/src/pages/download.js +++ b/website/src/pages/download.js @@ -60,6 +60,50 @@ function Download() { <div className="panel--title">0.5.0</div> + <a href="https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-src.tar.gz"> + <div className="panel--title"> + Official source release + </div> + </a> + <a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-src.tar.gz.sha512"> + <div className="panel--subtitle"> + SHA512 + </div> + </a> + <a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-src.tar.gz.asc"> + <div className="panel--subtitle"> + ASC + </div> + </a> + + <a href="https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-bin.tar.gz"> + <div className="panel--title"> + Official binary release + </div> + </a> + <a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-bin.tar.gz.sha512"> + <div className="panel--subtitle"> + SHA512 + </div> + </a> + <a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.6.0/apache-pinot-incubating-0.6.0-bin.tar.gz.asc"> + <div className="panel--subtitle"> + ASC{" "} + </div> + </a> + </a> + </div> + <div className="col"> + <a + href="https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.5.0/apache-pinot-incubating-0.5.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.5.0</div> + <a href="https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.5.0/apache-pinot-incubating-0.5.0-src.tar.gz"> <div className="panel--title"> Official source release diff --git a/website/src/pages/index.js b/website/src/pages/index.js index 130238a..db2c2ad 100755 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -293,7 +293,7 @@ function Installation() { </TabItem> <TabItem value="binary"> <CodeBlock className="language-bash"> - {`VERSION=0.5.0\nwget https://downloads.apache.org/incubator/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.6.0\nwget https://downloads.apache.org/incubator/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`} </CodeBlock> </TabItem> <TabItem value="github"> @@ -352,11 +352,11 @@ function Home() { > <div className="container"> <Link - to="https://docs.pinot.apache.org/basics/releases/0.5.0" + to="https://docs.pinot.apache.org/basics/releases/0.6.0" className={styles.indexAnnouncement} > <span className="badge badge-primary">release</span> - v0.5.0 has been released! Check the release notes + v0.6.0 has been released! Check the release notes </Link> <h1 className="hero__title">{siteConfig.title}</h1> <p className="hero__subtitle"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
