Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links for release 0.5.0 in the website #5996

Merged
merged 1 commit into from Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 30 additions & 0 deletions website/src/pages/download.js
Expand Up @@ -43,6 +43,36 @@ function Download() {
<div className="container">
<div className="row">

<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</div>
</a>
<a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.5.0/apache-pinot-incubating-0.5.0-src.tar.gz.sha512" >
<div className="panel--subtitle">SHA512</div>
</a>
<a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.5.0/apache-pinot-incubating-0.5.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.5.0/apache-pinot-incubating-0.5.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.5.0/apache-pinot-incubating-0.5.0-bin.tar.gz.sha512" >
<div className="panel--subtitle">SHA512</div>
</a>
<a href="https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-0.5.0/apache-pinot-incubating-0.5.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.4.0/apache-pinot-incubating-0.4.0-bin.tar.gz" className="panel panel--link text--center">
<div className="panel--icon">
Expand Down
6 changes: 3 additions & 3 deletions website/src/pages/index.js
Expand Up @@ -230,7 +230,7 @@ function Installation() {
<TabItem value="binary">
<CodeBlock className="language-bash">
{
`VERSION=0.4.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.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`
}
</CodeBlock>
</TabItem>
Expand Down Expand Up @@ -277,9 +277,9 @@ function Home() {

<header className={classnames('hero', 'hero--full-height', styles.indexHeroBanner)}>
<div className="container">
<Link to="https://docs.pinot.apache.org/releases/0.4.0" className={styles.indexAnnouncement}>
<Link to="https://docs.pinot.apache.org/releases/0.5.0" className={styles.indexAnnouncement}>
<span className="badge badge-primary">release</span>
v0.4.0 has been released! Check the release notes
v0.5.0 has been released! Check the release notes
</Link>
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}, designed to answer OLAP queries with low latency
Expand Down