You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by pr...@apache.org on 2017/10/17 03:56:31 UTC

orc git commit: Push update to site after 1.3.4 and 1.4.1 releases

Repository: orc
Updated Branches:
  refs/heads/asf-site fa9fb00cc -> 230ea8f3f


Push update to site after 1.3.4 and 1.4.1 releases


Project: http://git-wip-us.apache.org/repos/asf/orc/repo
Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/230ea8f3
Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/230ea8f3
Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/230ea8f3

Branch: refs/heads/asf-site
Commit: 230ea8f3f484ce83add722f39bd613452b159d99
Parents: fa9fb00
Author: Prasanth Jayachandran <pr...@apache.org>
Authored: Mon Oct 16 20:56:11 2017 -0700
Committer: Prasanth Jayachandran <pr...@apache.org>
Committed: Mon Oct 16 20:56:11 2017 -0700

----------------------------------------------------------------------
 develop/make-release/index.html      | 294 +++++++++++++++++++++++
 news/2017/10/16/ORC-1.3.4/index.html | 376 +++++++++++++++++++++++++++++
 news/2017/10/16/ORC-1.4.1/index.html | 377 ++++++++++++++++++++++++++++++
 news/index.html                      | 143 +++++++++++-
 news/releases/index.html             | 137 ++++++++++-
 5 files changed, 1306 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/orc/blob/230ea8f3/develop/make-release/index.html
----------------------------------------------------------------------
diff --git a/develop/make-release/index.html b/develop/make-release/index.html
new file mode 100644
index 0000000..a687978
--- /dev/null
+++ b/develop/make-release/index.html
@@ -0,0 +1,294 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+  <meta charset="UTF-8">
+  <title>Making a Release</title>
+  <meta name="viewport" content="width=device-width,initial-scale=1">
+  <meta name="generator" content="Jekyll v3.5.2">
+  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
+  <link rel="stylesheet" href="/css/screen.css">
+  <link rel="icon" type="image/x-icon" href="/favicon.ico">
+  <!--[if lt IE 9]>
+  <script src="/js/html5shiv.min.js"></script>
+  <script src="/js/respond.min.js"></script>
+  <![endif]-->
+</head>
+
+
+<body class="wrap">
+  <header role="banner">
+  <nav class="mobile-nav show-on-mobiles">
+    <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="current">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+  </nav>
+  <div class="grid">
+    <div class="unit one-third center-on-mobiles">
+      <h1>
+        <a href="/">
+          <span class="sr-only">Apache ORC</span>
+          <img src="/img/logo.png" width="249" height="101" alt="ORC Logo">
+        </a>
+      </h1>
+    </div>
+    <nav class="main-nav unit two-thirds hide-on-mobiles">
+      <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="current">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+    </nav>
+  </div>
+</header>
+
+
+  <section class="standalone">
+  <div class="grid">
+
+    <div class="unit whole">
+      <article>
+        <h1>Making a Release</h1>
+        <h2 id="preparing-for-release">Preparing for release</h2>
+
+<p>Set version so that it isn’t a SNAPSHOT.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% git checkout branch-X.Y
+% edit CMakeLists.txt
+% (mkdir build; cd build; cmake ..)
+</code></pre>
+</div>
+
+<p>Commit the changes back to Apache along with a tag for the release candidate.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% git commit -s -S -am 'Preparing for release X.Y.Z'
+% git remote add apache https://git-wip-us.apache.org/repos/asf/orc.git
+% git push apache branch-X.Y
+% git tag release-X.Y.Zrc0
+% git push apache release-X.Y.Zrc0
+</code></pre>
+</div>
+
+<p>Generate the source tarball and checksums for the release.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% wget https://github.com/apache/orc/archive/release-X.Y.Zrc0.tar.gz
+% tar xzf release-X.Y.Zrc0.tar.gz
+% mv orc-release-X.Y.Zrc0 orc-X.Y.Z
+% tar czf orc-X.Y.Zrc0.tar.gz orc-X.Y.Z
+% shasum -a 256 orc-X.Y.Zrc0.tar.gz &gt; orc-X.Y.Zrc0.tar.gz.sha256
+% gpg --detach-sig --armor orc-X.Y.Zrc0.tar.gz
+</code></pre>
+</div>
+
+<p>Copy the artifacts into your personal Apache website.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% sftp &lt;apacheid&gt;@home.apache.org
+sftp&gt; cd public_html
+sftp&gt; mkdir orc-X.Y.Zrc0
+sftp&gt; cd orc-X.Y.Zrc0
+sftp&gt; put orc-X.Y.Zrc0*
+sftp&gt; quit
+</code></pre>
+</div>
+
+<p>Make sure your GPG exists in https://dist.apache.org/repos/dist/release/orc/KEYS for others to verify signature in RC</p>
+
+<p>Send email with the vote:</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>To: dev@orc.apache.org
+Subject: [VOTE] Should we release ORC X.Y.Zrc0?
+
+All,
+
+Should we release the following artifacts as ORC X.Y.Z?
+
+tar: http://home.apache.org/~omalley/orc-X.Y.Zrc0/
+tag: https://github.com/apache/orc/releases/tag/release-X.Y.Zrc0
+jiras: https://issues.apache.org/jira/browse/ORC/fixforversion/&lt;fixid&gt;
+
+Thanks!
+</code></pre>
+</div>
+
+<h2 id="to-promote-a-release-candidate-rc-to-a-real-release">To promote a release candidate (RC) to a real release.</h2>
+
+<p>Update the final tag and remove the rc tag.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% git tag rel/release-X.Y.Z -s
+% git push apache rel/release-X.Y.Z
+% git push apache :release-X.Y.Zrc0
+</code></pre>
+</div>
+
+<p>Publish the artifacts to Maven central staging. Make sure to have this <a href="http://www.apache.org/dev/publishing-maven-artifacts.html#dev-env">setup</a> for Apache releases</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>% cd java
+% mvn -Papache-release clean deploy
+</code></pre>
+</div>
+
+<p>Publish from the staging area:</p>
+
+<ul>
+  <li>login to <a href="https://repository.apache.org/index.html#stagingRepositories">Maven staging</a></li>
+  <li>find your staging repository (search for org.apache.org)</li>
+  <li>close it</li>
+  <li>release it</li>
+</ul>
+
+<p>Publish the artifacts to Apache’s dist area.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>In a svn clone of https://dist.apache.org/repos/dist/release/orc
+% mkdir orc-X.Y.Z
+% cd orc-X.Y.Z
+copy release artifacts with a rename from orc-X.Y.Zrc0* to orc-X.Y.Z*
+% svn add .
+% svn commit
+</code></pre>
+</div>
+
+<p>We keep the latest patch release for each of the last two branches, so remove
+extra releases from the Apache dist area.</p>
+
+<p>Update the release branch with the version for the next release.</p>
+
+<div class="highlighter-rouge"><pre class="highlight"><code>edit CMakeLists.txt to change version to X.Y.(Z+1)-SNAPSHOT
+% cd build
+% cmake ..
+% git commit -a -s -S -am 'Preparing branch for post X.Y.Z development'
+% git push apache branch-X.Y
+</code></pre>
+</div>
+
+<p>Update the site with the new release.</p>
+
+<ul>
+  <li>Check out the master branch (git co apache/master)</li>
+  <li>Change directory in to site.</li>
+  <li>edit site/_data/releases.yml to add new release
+    <ul>
+      <li>update the state for the releases to match the changes in the Apache dist
+        <ul>
+          <li>latest = new release (only one of these!)</li>
+          <li>stable = other release still in dist</li>
+          <li>archived = removed from dist</li>
+        </ul>
+      </li>
+    </ul>
+  </li>
+  <li>create a new file _posts/YYYY-MM-DD-ORC-X.Y.Z.md for the news section</li>
+  <li>Run “bundle exec jekyll serve”</li>
+  <li>Check the website on http:/0.0.0.0:4000/</li>
+  <li>If it looks good, use git add to add the new files and commit to master with a message of “update site for X.Y.Z”.</li>
+  <li>Change directory into target.</li>
+  <li>Add the new files that you just generated.
+    <ul>
+      <li>This assumes you’ve set up site/target to be a separate git workspace that tracks the asf-site branch.</li>
+    </ul>
+  </li>
+  <li>Commit to asf-site to publish the updated site.</li>
+</ul>
+
+<p>Update ORC’s jira to reflect the released version.</p>
+
+<ul>
+  <li>Select the resolved issues and bulk transition them to closed.
+    <ul>
+      <li>query: project = ORC AND fixVersion = X.Y.Z and status = Resolved ORDER BY created desc</li>
+    </ul>
+  </li>
+  <li>Mark the version as released and set the date.</li>
+</ul>
+
+<p>It usually take up to 24 hours for the apache dist mirrors and maven central to update with the new release.</p>
+
+      </article>
+    </div>
+
+    <div class="clear"></div>
+
+  </div>
+</section>
+
+
+  <footer role="contentinfo">
+  <p>The contents of this website are &copy;&nbsp;2017
+     <a href="https://www.apache.org/">Apache Software Foundation</a>
+     under the terms of the <a
+      href="https://www.apache.org/licenses/LICENSE-2.0.html">
+      Apache&nbsp;License&nbsp;v2</a>. Apache ORC and its logo are trademarks
+      of the Apache Software Foundation.</p>
+</footer>
+
+  <script>
+  var anchorForId = function (id) {
+    var anchor = document.createElement("a");
+    anchor.className = "header-link";
+    anchor.href      = "#" + id;
+    anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
+    anchor.title = "Permalink";
+    return anchor;
+  };
+
+  var linkifyAnchors = function (level, containingElement) {
+    var headers = containingElement.getElementsByTagName("h" + level);
+    for (var h = 0; h < headers.length; h++) {
+      var header = headers[h];
+
+      if (typeof header.id !== "undefined" && header.id !== "") {
+        header.appendChild(anchorForId(header.id));
+      }
+    }
+  };
+
+  document.onreadystatechange = function () {
+    if (this.readyState === "complete") {
+      var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
+      if (!contentBlock) {
+        return;
+      }
+      for (var level = 1; level <= 6; level++) {
+        linkifyAnchors(level, contentBlock);
+      }
+    }
+  };
+</script>
+
+
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/orc/blob/230ea8f3/news/2017/10/16/ORC-1.3.4/index.html
----------------------------------------------------------------------
diff --git a/news/2017/10/16/ORC-1.3.4/index.html b/news/2017/10/16/ORC-1.3.4/index.html
new file mode 100644
index 0000000..1e737cb
--- /dev/null
+++ b/news/2017/10/16/ORC-1.3.4/index.html
@@ -0,0 +1,376 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+  <meta charset="UTF-8">
+  <title>ORC 1.3.4 Released</title>
+  <meta name="viewport" content="width=device-width,initial-scale=1">
+  <meta name="generator" content="Jekyll v3.5.2">
+  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
+  <link rel="stylesheet" href="/css/screen.css">
+  <link rel="icon" type="image/x-icon" href="/favicon.ico">
+  <!--[if lt IE 9]>
+  <script src="/js/html5shiv.min.js"></script>
+  <script src="/js/respond.min.js"></script>
+  <![endif]-->
+</head>
+
+
+<body class="wrap">
+  <header role="banner">
+  <nav class="mobile-nav show-on-mobiles">
+    <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+  </nav>
+  <div class="grid">
+    <div class="unit one-third center-on-mobiles">
+      <h1>
+        <a href="/">
+          <span class="sr-only">Apache ORC</span>
+          <img src="/img/logo.png" width="249" height="101" alt="ORC Logo">
+        </a>
+      </h1>
+    </div>
+    <nav class="main-nav unit two-thirds hide-on-mobiles">
+      <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+    </nav>
+  </div>
+</header>
+
+
+    <section class="news">
+    <div class="grid">
+
+      <div class="docs-nav-mobile unit whole show-on-mobiles">
+  <select onchange="if (this.value) window.location.href=this.value">
+    <option value="">Navigate the blog…</option>
+    <option value="/news/">Home</option>
+    <optgroup label="v1.x">
+      
+      <option value="/news/2017/10/16/ORC-1.4.1/">ORC 1.4.1 Released</option>
+      
+      <option value="/news/2017/10/16/ORC-1.3.4/">ORC 1.3.4 Released</option>
+      
+      <option value="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</option>
+      
+      <option value="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</option>
+      
+      <option value="/news/2017/05/08/ORC-1.4.0/">ORC 1.4.0 Released</option>
+      
+      <option value="/news/2017/02/21/ORC.1.3.3/">ORC 1.3.3 Released</option>
+      
+      <option value="/news/2017/02/13/ORC-1.3.2/">ORC 1.3.2 Released</option>
+      
+      <option value="/news/2017/02/03/ORC-1.3.1/">ORC 1.3.1 Released</option>
+      
+      <option value="/news/2017/01/23/ORC-1.3.0/">ORC 1.3.0 Released</option>
+      
+      <option value="/news/2017/01/04/gopal-on-pmc/">ORC adds Gopal Vijayaraghavan to PMC</option>
+      
+      <option value="/news/2016/12/15/new-committers/">ORC adds new committers</option>
+      
+      <option value="/news/2016/12/12/ORC-1.2.3/">ORC 1.2.3 Released</option>
+      
+      <option value="/news/2016/12/01/ORC-1.2.2/">ORC 1.2.2 Released</option>
+      
+      <option value="/news/2016/10/05/ORC-1.2.1/">ORC 1.2.1 Released</option>
+      
+      <option value="/news/2016/08/25/ORC-1.2.0/">ORC 1.2.0 Released</option>
+      
+      <option value="/news/2016/07/08/ORC-1.1.2/">ORC 1.1.2 Released</option>
+      
+      <option value="/news/2016/06/28/file-format-talk/">File format benchmark</option>
+      
+      <option value="/news/2016/06/13/ORC-1.1.1/">ORC 1.1.1 Released</option>
+      
+      <option value="/news/2016/06/10/ORC-1.1.0/">ORC 1.1.0 Released</option>
+      
+      <option value="/news/2016/01/25/ORC-1.0.0/">ORC 1.0.0 Released</option>
+      
+      <option value="/news/2015/11/19/aliaksei-on-pmc/">ORC adds Aliaksei Sandryhaila to PMC</option>
+      
+      <option value="/news/2015/06/26/new-logo/">ORC adopts new logo</option>
+      
+      <option value="/news/2015/05/11/new-committers/">ORC adds 7 committers</option>
+      
+      <option value="/news/2015/04/22/orc-as-tlp/">ORC becomes an Apache Top Level Project</option>
+      
+    </optgroup>
+  </select>
+</div>
+
+
+      <div class="unit four-fifths">
+        <article>
+  <h2>
+    ORC 1.3.4 Released
+    <a href="/news/2017/10/16/ORC-1.3.4/" class="permalink" title="Permalink">∞</a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj/prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.3.4.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.3.4/orc-1.3.4.tar.gz">orc-1.3.4.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.3.4">rel/release-1.3.4</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.sha256">55269430aea7b825…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.3.4%22&amp;tempMax=500">ORC-1.3.4</a></li>
+</ul>
+
+<p>The new features of ORC 1.3:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-58">ORC-58</a> Split C++ Reader into Reader and RowReader</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-120">ORC-120</a> Add backwards compatibility mode for schema evolution.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-124">ORC-124</a> Fast decimal improvements</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-128">ORC-128</a> Add ability to get statistics from writer</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+      </div>
+
+      <div class="unit one-fifth hide-on-mobiles">
+  <aside>
+    <ul>
+      <li class="">
+        <a href="/news/">All News</a>
+      </li>
+      <li class="">
+        <a href="/news/releases/">ORC Releases</a>
+      </li>
+    </ul>
+    <h4>Recent Releases</h4>
+    <ul>
+      
+      <li class="">
+        <a href="/news/2017/10/16/ORC-1.4.1/">Version 1.4.1</a>
+      </li>
+      
+      <li class="current">
+        <a href="/news/2017/10/16/ORC-1.3.4/">Version 1.3.4</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
+      </li>
+      
+    </ul>
+    <h4>Other News</h4>
+    <ul>
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/01/04/gopal-on-pmc/">ORC adds Gopal Vijayaraghavan to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/12/15/new-committers/">ORC adds new committers</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/06/28/file-format-talk/">File format benchmark</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/11/19/aliaksei-on-pmc/">ORC adds Aliaksei Sandryhaila to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/06/26/new-logo/">ORC adopts new logo</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/05/11/new-committers/">ORC adds 7 committers</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/04/22/orc-as-tlp/">ORC becomes an Apache Top Level Project</a>
+        </li>
+        
+        
+    </ul>
+  </aside>
+</div>
+
+
+      <div class="clear"></div>
+
+    </div>
+  </section>
+
+
+  <footer role="contentinfo">
+  <p>The contents of this website are &copy;&nbsp;2017
+     <a href="https://www.apache.org/">Apache Software Foundation</a>
+     under the terms of the <a
+      href="https://www.apache.org/licenses/LICENSE-2.0.html">
+      Apache&nbsp;License&nbsp;v2</a>. Apache ORC and its logo are trademarks
+      of the Apache Software Foundation.</p>
+</footer>
+
+  <script>
+  var anchorForId = function (id) {
+    var anchor = document.createElement("a");
+    anchor.className = "header-link";
+    anchor.href      = "#" + id;
+    anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
+    anchor.title = "Permalink";
+    return anchor;
+  };
+
+  var linkifyAnchors = function (level, containingElement) {
+    var headers = containingElement.getElementsByTagName("h" + level);
+    for (var h = 0; h < headers.length; h++) {
+      var header = headers[h];
+
+      if (typeof header.id !== "undefined" && header.id !== "") {
+        header.appendChild(anchorForId(header.id));
+      }
+    }
+  };
+
+  document.onreadystatechange = function () {
+    if (this.readyState === "complete") {
+      var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
+      if (!contentBlock) {
+        return;
+      }
+      for (var level = 1; level <= 6; level++) {
+        linkifyAnchors(level, contentBlock);
+      }
+    }
+  };
+</script>
+
+
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/orc/blob/230ea8f3/news/2017/10/16/ORC-1.4.1/index.html
----------------------------------------------------------------------
diff --git a/news/2017/10/16/ORC-1.4.1/index.html b/news/2017/10/16/ORC-1.4.1/index.html
new file mode 100644
index 0000000..77b073f
--- /dev/null
+++ b/news/2017/10/16/ORC-1.4.1/index.html
@@ -0,0 +1,377 @@
+<!DOCTYPE HTML>
+<html lang="en-US">
+<head>
+  <meta charset="UTF-8">
+  <title>ORC 1.4.1 Released</title>
+  <meta name="viewport" content="width=device-width,initial-scale=1">
+  <meta name="generator" content="Jekyll v3.5.2">
+  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
+  <link rel="stylesheet" href="/css/screen.css">
+  <link rel="icon" type="image/x-icon" href="/favicon.ico">
+  <!--[if lt IE 9]>
+  <script src="/js/html5shiv.min.js"></script>
+  <script src="/js/respond.min.js"></script>
+  <![endif]-->
+</head>
+
+
+<body class="wrap">
+  <header role="banner">
+  <nav class="mobile-nav show-on-mobiles">
+    <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+  </nav>
+  <div class="grid">
+    <div class="unit one-third center-on-mobiles">
+      <h1>
+        <a href="/">
+          <span class="sr-only">Apache ORC</span>
+          <img src="/img/logo.png" width="249" height="101" alt="ORC Logo">
+        </a>
+      </h1>
+    </div>
+    <nav class="main-nav unit two-thirds hide-on-mobiles">
+      <ul>
+  <li class="">
+    <a href="/">Home</a>
+  </li>
+  <li class="">
+    <a href="/docs/"><span class="show-on-mobiles">Docs</span>
+                     <span class="hide-on-mobiles">Documentation</span></a>
+  </li>
+  <li class="">
+    <a href="/talks/">Talks</a>
+  </li>
+  <li class="current">
+    <a href="/news/">News</a>
+  </li>
+  <li class="">
+    <a href="/help/">Help</a>
+  </li>
+  <li class="">
+    <a href="/develop/">Develop</a>
+  </li>
+</ul>
+
+    </nav>
+  </div>
+</header>
+
+
+    <section class="news">
+    <div class="grid">
+
+      <div class="docs-nav-mobile unit whole show-on-mobiles">
+  <select onchange="if (this.value) window.location.href=this.value">
+    <option value="">Navigate the blog…</option>
+    <option value="/news/">Home</option>
+    <optgroup label="v1.x">
+      
+      <option value="/news/2017/10/16/ORC-1.4.1/">ORC 1.4.1 Released</option>
+      
+      <option value="/news/2017/10/16/ORC-1.3.4/">ORC 1.3.4 Released</option>
+      
+      <option value="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</option>
+      
+      <option value="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</option>
+      
+      <option value="/news/2017/05/08/ORC-1.4.0/">ORC 1.4.0 Released</option>
+      
+      <option value="/news/2017/02/21/ORC.1.3.3/">ORC 1.3.3 Released</option>
+      
+      <option value="/news/2017/02/13/ORC-1.3.2/">ORC 1.3.2 Released</option>
+      
+      <option value="/news/2017/02/03/ORC-1.3.1/">ORC 1.3.1 Released</option>
+      
+      <option value="/news/2017/01/23/ORC-1.3.0/">ORC 1.3.0 Released</option>
+      
+      <option value="/news/2017/01/04/gopal-on-pmc/">ORC adds Gopal Vijayaraghavan to PMC</option>
+      
+      <option value="/news/2016/12/15/new-committers/">ORC adds new committers</option>
+      
+      <option value="/news/2016/12/12/ORC-1.2.3/">ORC 1.2.3 Released</option>
+      
+      <option value="/news/2016/12/01/ORC-1.2.2/">ORC 1.2.2 Released</option>
+      
+      <option value="/news/2016/10/05/ORC-1.2.1/">ORC 1.2.1 Released</option>
+      
+      <option value="/news/2016/08/25/ORC-1.2.0/">ORC 1.2.0 Released</option>
+      
+      <option value="/news/2016/07/08/ORC-1.1.2/">ORC 1.1.2 Released</option>
+      
+      <option value="/news/2016/06/28/file-format-talk/">File format benchmark</option>
+      
+      <option value="/news/2016/06/13/ORC-1.1.1/">ORC 1.1.1 Released</option>
+      
+      <option value="/news/2016/06/10/ORC-1.1.0/">ORC 1.1.0 Released</option>
+      
+      <option value="/news/2016/01/25/ORC-1.0.0/">ORC 1.0.0 Released</option>
+      
+      <option value="/news/2015/11/19/aliaksei-on-pmc/">ORC adds Aliaksei Sandryhaila to PMC</option>
+      
+      <option value="/news/2015/06/26/new-logo/">ORC adopts new logo</option>
+      
+      <option value="/news/2015/05/11/new-committers/">ORC adds 7 committers</option>
+      
+      <option value="/news/2015/04/22/orc-as-tlp/">ORC becomes an Apache Top Level Project</option>
+      
+    </optgroup>
+  </select>
+</div>
+
+
+      <div class="unit four-fifths">
+        <article>
+  <h2>
+    ORC 1.4.1 Released
+    <a href="/news/2017/10/16/ORC-1.4.1/" class="permalink" title="Permalink">∞</a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj/prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.4.1.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.4.1/orc-1.4.1.tar.gz">orc-1.4.1.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.4.1">rel/release-1.4.1</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.sha256">bf9f107c61ecd6a9…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.4.1%22&amp;tempMax=500">ORC-1.4.1</a></li>
+</ul>
+
+<p>The new features of ORC 1.4:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-72">ORC-72</a> Add benchmark code for file formats.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-87">ORC-87</a> Fix timestamp statistics in C++.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-150">ORC-150</a> Add tool to convert from JSON.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-151">ORC-151</a> Reduce the size of tools.jar.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-174">ORC-174</a> Create a nohive variant of the jars.</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+      </div>
+
+      <div class="unit one-fifth hide-on-mobiles">
+  <aside>
+    <ul>
+      <li class="">
+        <a href="/news/">All News</a>
+      </li>
+      <li class="">
+        <a href="/news/releases/">ORC Releases</a>
+      </li>
+    </ul>
+    <h4>Recent Releases</h4>
+    <ul>
+      
+      <li class="current">
+        <a href="/news/2017/10/16/ORC-1.4.1/">Version 1.4.1</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/10/16/ORC-1.3.4/">Version 1.3.4</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
+      </li>
+      
+      <li class="">
+        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
+      </li>
+      
+    </ul>
+    <h4>Other News</h4>
+    <ul>
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2017/01/04/gopal-on-pmc/">ORC adds Gopal Vijayaraghavan to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/12/15/new-committers/">ORC adds new committers</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2016/06/28/file-format-talk/">File format benchmark</a>
+        </li>
+        
+        
+        
+        
+        
+        
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/11/19/aliaksei-on-pmc/">ORC adds Aliaksei Sandryhaila to PMC</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/06/26/new-logo/">ORC adopts new logo</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/05/11/new-committers/">ORC adds 7 committers</a>
+        </li>
+        
+        
+        
+        <li class="">
+          <a href="/news/2015/04/22/orc-as-tlp/">ORC becomes an Apache Top Level Project</a>
+        </li>
+        
+        
+    </ul>
+  </aside>
+</div>
+
+
+      <div class="clear"></div>
+
+    </div>
+  </section>
+
+
+  <footer role="contentinfo">
+  <p>The contents of this website are &copy;&nbsp;2017
+     <a href="https://www.apache.org/">Apache Software Foundation</a>
+     under the terms of the <a
+      href="https://www.apache.org/licenses/LICENSE-2.0.html">
+      Apache&nbsp;License&nbsp;v2</a>. Apache ORC and its logo are trademarks
+      of the Apache Software Foundation.</p>
+</footer>
+
+  <script>
+  var anchorForId = function (id) {
+    var anchor = document.createElement("a");
+    anchor.className = "header-link";
+    anchor.href      = "#" + id;
+    anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
+    anchor.title = "Permalink";
+    return anchor;
+  };
+
+  var linkifyAnchors = function (level, containingElement) {
+    var headers = containingElement.getElementsByTagName("h" + level);
+    for (var h = 0; h < headers.length; h++) {
+      var header = headers[h];
+
+      if (typeof header.id !== "undefined" && header.id !== "") {
+        header.appendChild(anchorForId(header.id));
+      }
+    }
+  };
+
+  document.onreadystatechange = function () {
+    if (this.readyState === "complete") {
+      var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
+      if (!contentBlock) {
+        return;
+      }
+      for (var level = 1; level <= 6; level++) {
+        linkifyAnchors(level, contentBlock);
+      }
+    }
+  };
+</script>
+
+
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/orc/blob/230ea8f3/news/index.html
----------------------------------------------------------------------
diff --git a/news/index.html b/news/index.html
index 14c758d..aa53f6a 100644
--- a/news/index.html
+++ b/news/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>News</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.5.2">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -87,6 +87,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2017/10/16/ORC-1.4.1/">ORC 1.4.1 Released</option>
+      
+      <option value="/news/2017/10/16/ORC-1.3.4/">ORC 1.3.4 Released</option>
+      
       <option value="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</option>
       
       <option value="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</option>
@@ -140,6 +144,117 @@
         
   <article>
   <h2>
+    <a href="/news/2017/10/16/ORC-1.4.1/">
+      ORC 1.4.1 Released
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj//prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.4.1.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.4.1/orc-1.4.1.tar.gz">orc-1.4.1.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.4.1">rel/release-1.4.1</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.sha256">bf9f107c61ecd6a9…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.4.1%22&amp;tempMax=500">ORC-1.4.1</a></li>
+</ul>
+
+<p>The new features of ORC 1.4:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-72">ORC-72</a> Add benchmark code for file formats.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-87">ORC-87</a> Fix timestamp statistics in C++.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-150">ORC-150</a> Add tool to convert from JSON.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-151">ORC-151</a> Reduce the size of tools.jar.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-174">ORC-174</a> Create a nohive variant of the jars.</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+
+  <article>
+  <h2>
+    <a href="/news/2017/10/16/ORC-1.3.4/">
+      ORC 1.3.4 Released
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj//prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.3.4.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.3.4/orc-1.3.4.tar.gz">orc-1.3.4.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.3.4">rel/release-1.3.4</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.sha256">55269430aea7b825…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.3.4%22&amp;tempMax=500">ORC-1.3.4</a></li>
+</ul>
+
+<p>The new features of ORC 1.3:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-58">ORC-58</a> Split C++ Reader into Reader and RowReader</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-120">ORC-120</a> Add backwards compatibility mode for schema evolution.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-124">ORC-124</a> Fast decimal improvements</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-128">ORC-128</a> Add ability to get statistics from writer</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+
+  <article>
+  <h2>
     <a href="/news/2017/09/06/new-pmc/">
       ORC adds Eugene and Deepak to PMC
     </a>
@@ -287,11 +402,11 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>Released: 21 February 2017</li>
-  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.3.3/orc-1.3.3.tar.gz">orc-1.3.3.tar.gz</a></li>
-  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.3/orc-1.3.3.tar.gz.asc">GPG Signature</a>
+  <li>Source code: <a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz">orc-1.3.3.tar.gz</a></li>
+  <li><a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz.asc">GPG Signature</a>
 signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O’Malley (3D0C92B9)</a></li>
   <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.3.3">rel/release-1.3.3</a></li>
-  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.3/orc-1.3.3.tar.gz.sha256">48cf9f47ab13f4ba…</a></li>
+  <li>SHA 256: <a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz.sha256">48cf9f47ab13f4ba…</a></li>
   <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.3.3%22&amp;tempMax=500">ORC-1.3.3</a></li>
 </ul>
 
@@ -568,7 +683,7 @@ committers coming from Hive are:</p>
   <li>Matthew McCline</li>
   <li>Mithun Radhakrishnan</li>
   <li>Naveen Gangam</li>
-  <li>Pengcheng Xiong </li>
+  <li>Pengcheng Xiong</li>
   <li>Rajesh Balamohan</li>
   <li>Rui Li</li>
   <li>Sergio Pena</li>
@@ -1242,9 +1357,9 @@ more.</p>
     </a>
   </div>
   <div class="post-content">
-    <p>The ORC project has adopted a new logo. We hope you like it. </p>
+    <p>The ORC project has adopted a new logo. We hope you like it.</p>
 
-<p><img src="/img/logo.png" alt="orc logo" title="orc logo" /></p>
+<p><img src="http://localhost:4000/img/logo.png" alt="orc logo" title="orc logo" /></p>
 
 <p>Other great options included a big white hand on a black shield. <em>smile</em></p>
 
@@ -1382,23 +1497,23 @@ of the website.</p>
     <ul>
       
       <li class="">
-        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
+        <a href="/news/2017/10/16/ORC-1.4.1/">Version 1.4.1</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
+        <a href="/news/2017/10/16/ORC-1.3.4/">Version 1.3.4</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
+        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/03/ORC-1.3.1/">Version 1.3.1</a>
+        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/01/23/ORC-1.3.0/">Version 1.3.0</a>
+        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
       </li>
       
     </ul>
@@ -1406,6 +1521,10 @@ of the website.</p>
     <ul>
         
         
+        
+        
+        
+        
         <li class="">
           <a href="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</a>
         </li>

http://git-wip-us.apache.org/repos/asf/orc/blob/230ea8f3/news/releases/index.html
----------------------------------------------------------------------
diff --git a/news/releases/index.html b/news/releases/index.html
index e993c59..7d20ac7 100644
--- a/news/releases/index.html
+++ b/news/releases/index.html
@@ -4,7 +4,7 @@
   <meta charset="UTF-8">
   <title>Releases</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
-  <meta name="generator" content="Jekyll v2.4.0">
+  <meta name="generator" content="Jekyll v3.5.2">
   <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
@@ -87,6 +87,10 @@
     <option value="/news/">Home</option>
     <optgroup label="v1.x">
       
+      <option value="/news/2017/10/16/ORC-1.4.1/">ORC 1.4.1 Released</option>
+      
+      <option value="/news/2017/10/16/ORC-1.3.4/">ORC 1.3.4 Released</option>
+      
       <option value="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</option>
       
       <option value="/news/2017/05/16/new-committer/">Deepak Majeti added as committer</option>
@@ -140,6 +144,117 @@
         
   <article>
   <h2>
+    <a href="/news/2017/10/16/ORC-1.4.1/">
+      ORC 1.4.1 Released
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj//prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.4.1.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.4.1/orc-1.4.1.tar.gz">orc-1.4.1.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.4.1">rel/release-1.4.1</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.4.1/orc-1.4.1.tar.gz.sha256">bf9f107c61ecd6a9…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.4.1%22&amp;tempMax=500">ORC-1.4.1</a></li>
+</ul>
+
+<p>The new features of ORC 1.4:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-72">ORC-72</a> Add benchmark code for file formats.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-87">ORC-87</a> Fix timestamp statistics in C++.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-150">ORC-150</a> Add tool to convert from JSON.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-151">ORC-151</a> Reduce the size of tools.jar.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-174">ORC-174</a> Create a nohive variant of the jars.</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+
+  <article>
+  <h2>
+    <a href="/news/2017/10/16/ORC-1.3.4/">
+      ORC 1.3.4 Released
+    </a>
+  </h2>
+  <span class="post-category">
+    <span class="label">
+      release
+    </span>
+  </span>
+  <div class="post-meta">
+    <span class="post-date">
+      16 Oct 2017
+    </span>
+    <a href="https://people.apache.org/~prasanthj" class="post-author">
+      <img src="https://people.apache.org/~prasanthj//prasanthj.png"
+           class="avatar" alt="prasanthj avatar"
+           width="24" height="24">
+      prasanthj
+    </a>
+  </div>
+  <div class="post-content">
+    <p>The ORC team is excited to announce the release of ORC v1.3.4.</p>
+
+<ul>
+  <li>Released: 17 October 2017</li>
+  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.3.4/orc-1.3.4.tar.gz">orc-1.3.4.tar.gz</a></li>
+  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.asc">GPG Signature</a>
+signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Prasanth Jayachandran (65C468A3)</a></li>
+  <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.3.4">rel/release-1.3.4</a></li>
+  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.4/orc-1.3.4.tar.gz.sha256">55269430aea7b825…</a></li>
+  <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.3.4%22&amp;tempMax=500">ORC-1.3.4</a></li>
+</ul>
+
+<p>The new features of ORC 1.3:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-58">ORC-58</a> Split C++ Reader into Reader and RowReader</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-120">ORC-120</a> Add backwards compatibility mode for schema evolution.</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-124">ORC-124</a> Fast decimal improvements</li>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-128">ORC-128</a> Add ability to get statistics from writer</li>
+</ul>
+
+<p>Known issues:</p>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ORC-40">ORC-40</a> Predicate push down is not implemented in C++.</li>
+</ul>
+
+
+  </div>
+</article>
+
+
+  <article>
+  <h2>
     <a href="/news/2017/05/08/ORC-1.4.0/">
       ORC 1.4.0 Released
     </a>
@@ -221,11 +336,11 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
 
 <ul>
   <li>Released: 21 February 2017</li>
-  <li>Source code: <a href="https://www.apache.org/dyn/closer.cgi/orc/orc-1.3.3/orc-1.3.3.tar.gz">orc-1.3.3.tar.gz</a></li>
-  <li><a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.3/orc-1.3.3.tar.gz.asc">GPG Signature</a>
+  <li>Source code: <a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz">orc-1.3.3.tar.gz</a></li>
+  <li><a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz.asc">GPG Signature</a>
 signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O’Malley (3D0C92B9)</a></li>
   <li>Git tag: <a href="https://github.com/apache/orc/releases/tag/rel/release-1.3.3">rel/release-1.3.3</a></li>
-  <li>SHA 256: <a href="https://dist.apache.org/repos/dist/release/orc/orc-1.3.3/orc-1.3.3.tar.gz.sha256">48cf9f47ab13f4ba…</a></li>
+  <li>SHA 256: <a href="https://archive.apache.org/dist/orc/orc-1.3.3/orc-1.3.3.tar.gz.sha256">48cf9f47ab13f4ba…</a></li>
   <li>Fixed issues: <a href="https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project+%3D+ORC+AND+status+%3D+Closed+AND+fixVersion+%3D+%221.3.3%22&amp;tempMax=500">ORC-1.3.3</a></li>
 </ul>
 
@@ -989,23 +1104,23 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
     <ul>
       
       <li class="">
-        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
+        <a href="/news/2017/10/16/ORC-1.4.1/">Version 1.4.1</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
+        <a href="/news/2017/10/16/ORC-1.3.4/">Version 1.3.4</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
+        <a href="/news/2017/05/08/ORC-1.4.0/">Version 1.4.0</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/02/03/ORC-1.3.1/">Version 1.3.1</a>
+        <a href="/news/2017/02/21/ORC.1.3.3/">Version 1.3.3</a>
       </li>
       
       <li class="">
-        <a href="/news/2017/01/23/ORC-1.3.0/">Version 1.3.0</a>
+        <a href="/news/2017/02/13/ORC-1.3.2/">Version 1.3.2</a>
       </li>
       
     </ul>
@@ -1013,6 +1128,10 @@ signed by <a href="https://dist.apache.org/repos/dist/release/orc/KEYS">Owen O
     <ul>
         
         
+        
+        
+        
+        
         <li class="">
           <a href="/news/2017/09/06/new-pmc/">ORC adds Eugene and Deepak to PMC</a>
         </li>