This is an automated email from the ASF dual-hosted git repository. szetszwo pushed a commit to branch asf-site-source in repository https://gitbox.apache.org/repos/asf/ratis-hadoop-projects.git
commit 65341184b7426de9b766f534ea5f6fb1581c21a7 Author: Márton Elek <[email protected]> AuthorDate: Sun Jul 15 08:37:06 2018 +0200 0.2.0 release announcement --- content/post/0.1.0-alpha.md | 2 +- content/post/{0.1.0-alpha.md => 0.2.0.md} | 17 ++++++++++------- layouts/index.html | 15 ++++++++++++--- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/content/post/0.1.0-alpha.md b/content/post/0.1.0-alpha.md index 850f401..473cc3b 100644 --- a/content/post/0.1.0-alpha.md +++ b/content/post/0.1.0-alpha.md @@ -2,7 +2,7 @@ title: Release 0.1.0-alpha is available date: 2017-05-02 type: release -linked: true +sourceonly: true --- <!--- Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/content/post/0.1.0-alpha.md b/content/post/0.2.0.md similarity index 53% copy from content/post/0.1.0-alpha.md copy to content/post/0.2.0.md index 850f401..ee81d42 100644 --- a/content/post/0.1.0-alpha.md +++ b/content/post/0.2.0.md @@ -1,6 +1,6 @@ --- -title: Release 0.1.0-alpha is available -date: 2017-05-02 +title: Release 0.2.0 is available +date: 2018-07-15 type: release linked: true --- @@ -18,10 +18,13 @@ linked: true limitations under the License. See accompanying LICENSE file. --> -This is the first incubator release of Apache Ratis. -Key features: +0.2.0 is the second Apache release and the first release which provides binary release with example Raft applications. + +It contains more than 130 bug fixes and features since the previous release. + +This version also heavily tested with [Apache Hadoop Ozone](http://ozone.hadoop.apache.org) where Apache Ratis is used to replicate raw Hadoop data. + +The release is available from the downloaded section or (as Ratis is a java library) from the Apache and Maven central maven repositories. + - * Pluggable transports (Hadoop Rpc, GRpc, Netty) - * Pluggable statemachine - * Pluggable raft log implementation. diff --git a/layouts/index.html b/layouts/index.html index 1b1ccb5..faa24dd 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -125,19 +125,28 @@ <th>Version</th> <th>Release date</th> <th>Source download</th> + <th>Binary download</th> <th>Announcement</th> </tr> </thead> {{range first 5 (where .Site.Pages ".Params.type" "release")}} <tr> - <td>{{.BaseFileName }}</td> + <td>{{.BaseFileName }}</td> <td>{{dateFormat "2006 Jan 2 " .Date}}</td> <td> <a href="https://www.apache.org/dyn/closer.cgi/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-src.tar.gz">source</a> (<a href="https://dist.apache.org/repos/dist/release/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-src.tar.gz.mds">checksum</a> <a href="https://dist.apache.org/repos/dist/release/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-src.tar.gz.asc">signature</a>) </td> - + {{ if .Params.sourceonly }} + <td></td> + {{else}} + <td> + <a href="https://www.apache.org/dyn/closer.cgi/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-bin.tar.gz">binary</a> + (<a href="https://dist.apache.org/repos/dist/release/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-bin.tar.gz.mds">checksum</a> + <a href="https://dist.apache.org/repos/dist/release/incubator/ratis/{{.BaseFileName }}/apache-ratis-incubating-{{.BaseFileName }}-bin.tar.gz.asc">signature</a>) + </td> + {{end}} <td> <a href="post/{{.BaseFileName }}.html">Announcement</a> </td> @@ -145,7 +154,7 @@ {{end}} </table> </p> - + <p>Ratis is also <a href="https://search.maven.org/#search%7Cga%7C1%7Cratis">available</a> from the Maven central repository.</p> </div> </div>
