Updated the website built from mesos SHA: 81d4b20.

Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/2a793735
Tree: http://git-wip-us.apache.org/repos/asf/mesos-site/tree/2a793735
Diff: http://git-wip-us.apache.org/repos/asf/mesos-site/diff/2a793735

Branch: refs/heads/asf-site
Commit: 2a793735825aabe4e487f22d126148b0c9d88e69
Parents: f878d58
Author: jenkins <bui...@apache.org>
Authored: Thu May 17 23:23:15 2018 +0000
Committer: jenkins <bui...@apache.org>
Committed: Thu May 17 23:23:15 2018 +0000

----------------------------------------------------------------------
 content/blog/feed.xml                           |   61 +-
 content/blog/index.html                         |    4 +
 content/blog/mesos-1-6-0-released/index.html    |  247 +
 content/documentation/building/index.html       |    4 +-
 .../documentation/latest/building/index.html    |    4 +-
 content/downloads/index.html                    |    6 +-
 content/index.html                              |    4 +-
 content/sitemap.xml                             | 9170 +++++++++---------
 8 files changed, 4907 insertions(+), 4593 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/blog/feed.xml
----------------------------------------------------------------------
diff --git a/content/blog/feed.xml b/content/blog/feed.xml
index 86b1ae2..1abeb5f 100644
--- a/content/blog/feed.xml
+++ b/content/blog/feed.xml
@@ -4,7 +4,66 @@
   <id>http://mesos.apache.org/blog</id>
   <link href="http://mesos.apache.org/blog"; />
   <link href="http://mesos.apache.org/blog/feed.xml"; rel="self"/>
-  <updated>2018-02-08T00:00:00+00:00</updated>
+  <updated>2018-05-17T00:00:00+00:00</updated>
+  <entry>
+    <id>http://mesos.apache.org/blog/mesos-1-6-0-released/</id>
+    <link href="/blog/mesos-1-6-0-released/" />
+    <title>
+      Mesos 1.6: Persistent Volume, Scheduler API, and Docker Support 
Improvements
+    </title>
+    <updated>2018-05-17T00:00:00+00:00</updated>
+    <author>
+      <name>Greg Mann</name>
+    </author>
+    <content type="html">
+      &lt;p&gt;Great work everyone; Apache Mesos 1.6.0 was released on May 
11!&lt;/p&gt;
+
+&lt;h1&gt;New Features and Improvements&lt;/h1&gt;
+
+&lt;p&gt;Mesos 1.6 includes improvements to persistent volumes, usability of 
the scheduler API, Docker daemon support, and memory allocation 
performance.&lt;/p&gt;
+
+&lt;h2&gt;Resizing Persistent Volumes&lt;/h2&gt;
+
+&lt;p&gt;Mesos 1.6 adds experimental support for the &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/persistent-volume/&quot;&gt;resizing
 of persistent volumes&lt;/a&gt;. Two new operations, &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/persistent-volume/#offer-operation-growvolume&quot;&gt;GrowVolume&lt;/a&gt;
 and &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/persistent-volume/#offer-operation-shrinkvolume&quot;&gt;ShrinkVolume&lt;/a&gt;,
 can be used both via the &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/scheduler-http-api/#accept&quot;&gt;scheduler
 API&lt;/a&gt; and via the &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/operator-http-api/#grow_volume&quot;&gt;operator
 API&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;Persistent volume resizing is currently limited to volumes created on 
default agent disk resources - in other words, CSI volumes are not yet 
supported.&lt;/p&gt;
+
+&lt;h2&gt;Offer Operation Feedback&lt;/h2&gt;
+
+&lt;p&gt;Mesos 1.6 introduces experimental support for offer operation status 
updates. Previously, only &lt;code&gt;Launch&lt;/code&gt; and 
&lt;code&gt;LaunchGroup&lt;/code&gt; operations received feedback via task 
status updates. Now, schedulers may opt to receive feedback on other offer 
operations via operation status updates by setting the 
&lt;code&gt;id&lt;/code&gt; field in the operation. Similar to task status 
updates, when these operation updates have a unique 
&lt;code&gt;uuid&lt;/code&gt; set, the scheduler must acknowledge them. This 
feature allows schedulers to ensure the reliability of offer operations like 
&lt;code&gt;Reserve&lt;/code&gt; and &lt;code&gt;Create&lt;/code&gt;; if such 
an operation fails and the scheduler has opted in to receive feedback, an 
operation status update will be sent and the scheduler can retry if 
appropriate.&lt;/p&gt;
+
+&lt;p&gt;Offer operation feedback is currently limited to operations on 
resources provided by a resource provider - in most cases, this means that only 
operations on CSI volumes are supported.&lt;/p&gt;
+
+&lt;h2&gt;Performance and Debugging&lt;/h2&gt;
+
+&lt;p&gt;Mesos 1.6 includes experimental support for the &lt;a 
href=&quot;http://jemalloc.net&quot;&gt;jemalloc&lt;/a&gt; memory allocation 
library. In addition to a potential improvement in memory allocation 
performance, this enables simple memory profiling via command-line flags and 
environment variables outlined in the &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/memory-profiling/&quot;&gt;documentation&lt;/a&gt;.
 We expect this feature to help drive future performance improvments in Mesos 
since it improves the ability of operators to understand how Mesos behaves in 
production environments.&lt;/p&gt;
+
+&lt;h2&gt;Docker Improvements&lt;/h2&gt;
+
+&lt;p&gt;In response to issues encountered by operators when using Mesos with 
the Docker container runtime, &lt;a 
href=&quot;https://issues.apache.org/jira/browse/MESOS-8572&quot;&gt;several 
improvements&lt;/a&gt; were made to the Docker containerizer and executor to 
help them more gracefully handle situations in which the Docker daemon is 
unresponsive. Retry and timeout logic has been added in several key locations 
so that when the Docker daemon hangs for short periods of time, Mesos can 
recover and resume normal operation.&lt;/p&gt;
+
+&lt;h2&gt;Upgrade&lt;/h2&gt;
+
+&lt;p&gt;In most cases, upgrades from Mesos 1.5.0 to Mesos 1.6.0 are 
straightforward. Please refer to the &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/upgrades/&quot;&gt;upgrade
 guide&lt;/a&gt; for detailed information on upgrading to Mesos 1.6.0.&lt;/p&gt;
+
+&lt;p&gt;Support for the Container Storage Interface (CSI) version 0.2 has 
been added, and CSI v0.1 support is now deprecated.&lt;/p&gt;
+
+&lt;p&gt;When building Mesos with gRPC support, note that gRPC version 1.10 or 
later is now required.&lt;/p&gt;
+
+&lt;h1&gt;Community&lt;/h1&gt;
+
+&lt;p&gt;Inspired by the work that went into this release? Want to get 
involved? Have feedback? We&amp;rsquo;d love to hear from you! Join a &lt;a 
href=&quot;http://mesos.apache.org/documentation/latest/working-groups/&quot;&gt;working
 group&lt;/a&gt; or start a conversation in the &lt;a 
href=&quot;http://mesos.apache.org/community/&quot;&gt;community&lt;/a&gt;!&lt;/p&gt;
+
+&lt;h1&gt;Thank you!&lt;/h1&gt;
+
+&lt;p&gt;Thanks to the 55 contributors who made Mesos 1.6.0 possible:&lt;/p&gt;
+
+&lt;p&gt;Adam B, Akash Gupta, Alexander Rojas, Alexander Rukletsov, Andrei 
Budnik, Andrew Schwartzmeyer, AntonDan, Armand Grillet, Benjamin Bannier, 
Benjamin Mahler, Benjamin Peterson, Benno Evers, Chun-Hung Hsiao, Clement 
Michaud, David Forsythe, Demitri Swan, EMumau, Eric Chung, Eric Mumau, Gaston 
Kleiman, Gilbert Song, Greg Mann, Harold Dost, Ilya Pronin, James Peach, Jan 
Schlicht, Jason Lai, Jeff Coffler, Jiang Yan Xu, Jie Yu, Joerg Schad, John 
Kordich, Joseph Wu, Judith Malnick, Kapil Arya, Marcin Owsiany, Megha Sharma, 
Meng Zhu, Michael Park, Murilo Pereira, Packt, Qian Zhang, Sachin Paryani, 
Sagar Patwardhan, Senthil Kumaran, Shiv Deepak, Shubham Kumar, Sofian Brabez, 
Till Toenshoff, Tomasz Janiszewski, Vinod Kone, Xudong Ni, Zhitao Li, longfei, 
miamipanther&lt;/p&gt;
+
+&lt;p&gt;Enjoy Apache Mesos 1.6!&lt;/p&gt;
+
+       </content>
+  </entry>
   <entry>
     <id>http://mesos.apache.org/blog/mesos-1-5-0-released/</id>
     <link href="/blog/mesos-1-5-0-released/" />

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/blog/index.html
----------------------------------------------------------------------
diff --git a/content/blog/index.html b/content/blog/index.html
index 964b557..4221c9d 100644
--- a/content/blog/index.html
+++ b/content/blog/index.html
@@ -102,6 +102,10 @@
   </div>
   <div class="col-md-9">
       <article>
+        <h2><a href="/blog/mesos-1-6-0-released/">Mesos 1.6: Persistent 
Volume, Scheduler API, and Docker Support Improvements</a></h2>
+      <p><em>Posted by Greg Mann, May 17, 2018</em></p>
+      </article>
+      <article>
         <h2><a href="/blog/mesos-1-5-0-released/">Mesos 1.5: Storage, 
Performance, Resource Management, and Containerization improvements</a></h2>
       <p><em>Posted by Gilbert Song, February  8, 2018</em></p>
       </article>

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/blog/mesos-1-6-0-released/index.html
----------------------------------------------------------------------
diff --git a/content/blog/mesos-1-6-0-released/index.html 
b/content/blog/mesos-1-6-0-released/index.html
new file mode 100644
index 0000000..36b4285
--- /dev/null
+++ b/content/blog/mesos-1-6-0-released/index.html
@@ -0,0 +1,247 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <title>Mesos 1.6: Persistent Volume, Scheduler API, and Docker Support 
Improvements</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+    <meta property="og:locale" content="en_US"/>
+    <meta property="og:type" content="website"/>
+    <meta property="og:title" content="Apache Mesos"/>
+    <meta property="og:site_name" content="Apache Mesos"/>
+    <meta property="og:url" content="http://mesos.apache.org/"/>
+    <meta property="og:image" 
content="http://mesos.apache.org/assets/img/mesos_logo_fb_preview.png"/>
+    <meta property="og:description"
+          content="Apache Mesos abstracts resources away from machines,
+                   enabling fault-tolerant and elastic distributed systems
+                   to easily be built and run effectively."/>
+
+    <meta name="twitter:card" content="summary"/>
+    <meta name="twitter:site" content="@ApacheMesos"/>
+    <meta name="twitter:title" content="Apache Mesos"/>
+    <meta name="twitter:image" 
content="http://mesos.apache.org/assets/img/mesos_logo_fb_preview.png"/>
+    <meta name="twitter:description"
+          content="Apache Mesos abstracts resources away from machines,
+                   enabling fault-tolerant and elastic distributed systems
+                   to easily be built and run effectively."/>
+
+    <link 
href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" 
rel="stylesheet">
+    <link rel="alternate" type="application/atom+xml" title="Apache Mesos 
Blog" href="/blog/feed.xml">
+    <link href="../../assets/css/main.css" rel="stylesheet" />
+
+
+    <!-- Google Analytics Magic -->
+    <script type="text/javascript">
+    var _gaq = _gaq || [];
+    _gaq.push(['_setAccount', 'UA-20226872-1']);
+    _gaq.push(['_setDomainName', 'apache.org']);
+    _gaq.push(['_trackPageview']);
+
+    (function() {
+      var ga = document.createElement('script'); ga.type = 'text/javascript'; 
ga.async = true;
+      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+      var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+    })();
+    </script>
+  </head>
+  <body>
+    <!-- magical breadcrumbs -->
+    <div class="topnav">
+      <div class="container">
+        <ul class="breadcrumb">
+          <li>
+            <div class="dropdown">
+              <a data-toggle="dropdown" href="#">Apache Software Foundation 
<span class="caret"></span></a>
+              <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
+                <li><a href="http://www.apache.org";>Apache Homepage</a></li>
+                <li><a href="http://www.apache.org/licenses/";>License</a></li>
+                <li><a 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li>
+                <li><a 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li>
+                <li><a href="http://www.apache.org/security/";>Security</a></li>
+              </ul>
+            </div>
+          </li>
+
+          <li><a href="http://mesos.apache.org";>Apache Mesos</a></li>
+          <li><a href="/blog
+/">Blog
+</a></li>
+        </ul><!-- /.breadcrumb -->
+      </div><!-- /.container -->
+    </div><!-- /.topnav -->
+
+    <!-- navbar excitement -->
+<div class="navbar navbar-default navbar-static-top" role="navigation">
+  <div class="container">
+    <div class="navbar-header">
+      <button type="button" class="navbar-toggle collapsed" 
data-toggle="collapse" data-target="#mesos-menu" aria-expanded="false">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      </button>
+      <a class="navbar-brand" href="/"><img src="/assets/img/mesos_logo.png" 
alt="Apache Mesos logo"/></a>
+    </div><!-- /.navbar-header -->
+
+    <div class="navbar-collapse collapse" id="mesos-menu">
+      <ul class="nav navbar-nav navbar-right">
+        <li><a href="/getting-started/">Getting Started</a></li>
+        <li><a href="/blog/">Blog</a></li>
+        <li><a href="/documentation/latest/">Documentation</a></li>
+        <li><a href="/downloads/">Downloads</a></li>
+        <li><a href="/community/">Community</a></li>
+      </ul>
+    </div><!-- /#mesos-menu -->
+  </div><!-- /.container -->
+</div><!-- /.navbar -->
+
+<div class="content">
+  <div class="container">
+    <div class="row">
+
+  <div class="col-md-3">
+    <div class="meta">
+      <span class="author">
+          <img 
src="http://www.gravatar.com/avatar/20c5c9695f0891b6b093704331238133?s=80";
+               class="author_gravatar">
+        <span class="author_contact">
+          <p><strong>Greg Mann</strong></p>
+            <p><a href="http://twitter.com/greggomann";>@greggomann</a></p>
+        </span>
+      </span>
+      <p><em>Posted May 17, 2018</em></p>
+    </div>
+
+    <div class="share">
+      <span class="social-share-button"><a href="https://twitter.com/share"; 
class="twitter-share-button" data-via="apachemesos">Tweet</a></span>
+
+      <span><script>!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
 'script', 'twitter-wjs');</script></span>
+
+      <span><div class="g-plusone" data-size="medium"></div></span>
+
+      <!-- Place this tag after the last +1 button tag. -->
+      <script type="text/javascript">
+        (function() {
+        var po = document.createElement('script'); po.type = 
'text/javascript'; po.async = true;
+        po.src = 'https://apis.google.com/js/plusone.js';
+        var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(po, s);
+        })();
+      </script>
+
+      <script src="//platform.linkedin.com/in.js" type="text/javascript">
+       lang: en_US
+      </script>
+      <script type="IN/Share" data-counter="right"></script>
+    </div>
+  </div>
+
+  <div class="post col-md-9">
+    <h1>Mesos 1.6: Persistent Volume, Scheduler API, and Docker Support 
Improvements</h1>
+
+    <p>Great work everyone; Apache Mesos 1.6.0 was released on May 11!</p>
+
+<h1>New Features and Improvements</h1>
+
+<p>Mesos 1.6 includes improvements to persistent volumes, usability of the 
scheduler API, Docker daemon support, and memory allocation performance.</p>
+
+<h2>Resizing Persistent Volumes</h2>
+
+<p>Mesos 1.6 adds experimental support for the <a 
href="http://mesos.apache.org/documentation/latest/persistent-volume/";>resizing 
of persistent volumes</a>. Two new operations, <a 
href="http://mesos.apache.org/documentation/latest/persistent-volume/#offer-operation-growvolume";>GrowVolume</a>
 and <a 
href="http://mesos.apache.org/documentation/latest/persistent-volume/#offer-operation-shrinkvolume";>ShrinkVolume</a>,
 can be used both via the <a 
href="http://mesos.apache.org/documentation/latest/scheduler-http-api/#accept";>scheduler
 API</a> and via the <a 
href="http://mesos.apache.org/documentation/latest/operator-http-api/#grow_volume";>operator
 API</a>.</p>
+
+<p>Persistent volume resizing is currently limited to volumes created on 
default agent disk resources - in other words, CSI volumes are not yet 
supported.</p>
+
+<h2>Offer Operation Feedback</h2>
+
+<p>Mesos 1.6 introduces experimental support for offer operation status 
updates. Previously, only <code>Launch</code> and <code>LaunchGroup</code> 
operations received feedback via task status updates. Now, schedulers may opt 
to receive feedback on other offer operations via operation status updates by 
setting the <code>id</code> field in the operation. Similar to task status 
updates, when these operation updates have a unique <code>uuid</code> set, the 
scheduler must acknowledge them. This feature allows schedulers to ensure the 
reliability of offer operations like <code>Reserve</code> and 
<code>Create</code>; if such an operation fails and the scheduler has opted in 
to receive feedback, an operation status update will be sent and the scheduler 
can retry if appropriate.</p>
+
+<p>Offer operation feedback is currently limited to operations on resources 
provided by a resource provider - in most cases, this means that only 
operations on CSI volumes are supported.</p>
+
+<h2>Performance and Debugging</h2>
+
+<p>Mesos 1.6 includes experimental support for the <a 
href="http://jemalloc.net";>jemalloc</a> memory allocation library. In addition 
to a potential improvement in memory allocation performance, this enables 
simple memory profiling via command-line flags and environment variables 
outlined in the <a 
href="http://mesos.apache.org/documentation/latest/memory-profiling/";>documentation</a>.
 We expect this feature to help drive future performance improvments in Mesos 
since it improves the ability of operators to understand how Mesos behaves in 
production environments.</p>
+
+<h2>Docker Improvements</h2>
+
+<p>In response to issues encountered by operators when using Mesos with the 
Docker container runtime, <a 
href="https://issues.apache.org/jira/browse/MESOS-8572";>several 
improvements</a> were made to the Docker containerizer and executor to help 
them more gracefully handle situations in which the Docker daemon is 
unresponsive. Retry and timeout logic has been added in several key locations 
so that when the Docker daemon hangs for short periods of time, Mesos can 
recover and resume normal operation.</p>
+
+<h2>Upgrade</h2>
+
+<p>In most cases, upgrades from Mesos 1.5.0 to Mesos 1.6.0 are 
straightforward. Please refer to the <a 
href="http://mesos.apache.org/documentation/latest/upgrades/";>upgrade guide</a> 
for detailed information on upgrading to Mesos 1.6.0.</p>
+
+<p>Support for the Container Storage Interface (CSI) version 0.2 has been 
added, and CSI v0.1 support is now deprecated.</p>
+
+<p>When building Mesos with gRPC support, note that gRPC version 1.10 or later 
is now required.</p>
+
+<h1>Community</h1>
+
+<p>Inspired by the work that went into this release? Want to get involved? 
Have feedback? We&rsquo;d love to hear from you! Join a <a 
href="http://mesos.apache.org/documentation/latest/working-groups/";>working 
group</a> or start a conversation in the <a 
href="http://mesos.apache.org/community/";>community</a>!</p>
+
+<h1>Thank you!</h1>
+
+<p>Thanks to the 55 contributors who made Mesos 1.6.0 possible:</p>
+
+<p>Adam B, Akash Gupta, Alexander Rojas, Alexander Rukletsov, Andrei Budnik, 
Andrew Schwartzmeyer, AntonDan, Armand Grillet, Benjamin Bannier, Benjamin 
Mahler, Benjamin Peterson, Benno Evers, Chun-Hung Hsiao, Clement Michaud, David 
Forsythe, Demitri Swan, EMumau, Eric Chung, Eric Mumau, Gaston Kleiman, Gilbert 
Song, Greg Mann, Harold Dost, Ilya Pronin, James Peach, Jan Schlicht, Jason 
Lai, Jeff Coffler, Jiang Yan Xu, Jie Yu, Joerg Schad, John Kordich, Joseph Wu, 
Judith Malnick, Kapil Arya, Marcin Owsiany, Megha Sharma, Meng Zhu, Michael 
Park, Murilo Pereira, Packt, Qian Zhang, Sachin Paryani, Sagar Patwardhan, 
Senthil Kumaran, Shiv Deepak, Shubham Kumar, Sofian Brabez, Till Toenshoff, 
Tomasz Janiszewski, Vinod Kone, Xudong Ni, Zhitao Li, longfei, miamipanther</p>
+
+<p>Enjoy Apache Mesos 1.6!</p>
+
+  </div>
+</div>
+
+  </div><!-- /.container -->
+</div><!-- /.content -->
+
+<hr>
+
+
+
+    <!-- footer -->
+    <div class="footer">
+      <div class="container">
+
+        <div class="col-md-3">
+            <a  href="https://www.apache.org/events/current-event.html";>
+              <img 
src="https://www.apache.org/events/current-event-234x60.png"/>
+            </a>
+        </div>
+
+        <div class="col-md-3 social-blk">
+          <span class="social">
+            <a href="https://twitter.com/ApacheMesos";
+              class="twitter-follow-button"
+              data-show-count="false" data-size="large">Follow @ApacheMesos</a>
+            <script>!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
 'script', 'twitter-wjs');</script>
+            <a href="https://twitter.com/intent/tweet?button_hashtag=mesos";
+              class="twitter-hashtag-button"
+              data-size="large"
+              data-related="ApacheMesos">Tweet #mesos</a>
+            <script>!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
 'script', 'twitter-wjs');</script>
+          </span>
+        </div>
+
+        <div class="col-md-6 trademark">
+          <p>&copy; 2012-2018 <a href="http://apache.org";>The Apache Software 
Foundation</a>.
+            Apache Mesos, the Apache feather logo, and the Apache Mesos 
project logo are trademarks of The Apache Software Foundation.
+          <p>
+        </div>
+
+      </div><!-- /.container -->
+    </div><!-- /.footer -->
+
+    <!-- JS -->
+    <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
+    <script 
src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
+    <script 
src="//cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js"></script>
+
+    <!-- Inject anchors for all headings on the page, see 
https://www.bryanbraun.com/anchorjs. -->
+    <script type="text/javascript">
+    anchors.options = {
+      placement: 'right',
+      ariaLabel: 'Permalink',
+    };
+
+    // The default is to not add anchors to h1, but we have pages with 
multiple h1 headers,
+    // and we do want to put anchors on those.
+    anchors.add('h1, h2, h3, h4, h5, h6');
+    </script>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/documentation/building/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/building/index.html 
b/content/documentation/building/index.html
index 3f28300..3cbced1 100644
--- a/content/documentation/building/index.html
+++ b/content/documentation/building/index.html
@@ -115,8 +115,8 @@
 
 <p>1. Download the latest stable release from <a 
href="http://mesos.apache.org/downloads/";>Apache</a> 
(<strong><em>Recommended</em></strong>)</p>
 
-<pre><code>$ wget http://www.apache.org/dist/mesos/1.4.1/mesos-1.4.1.tar.gz
-$ tar -zxf mesos-1.4.1.tar.gz
+<pre><code>$ wget http://www.apache.org/dist/mesos/1.6.0/mesos-1.6.0.tar.gz
+$ tar -zxf mesos-1.6.0.tar.gz
 </code></pre>
 
 <p>2. Clone the Mesos git <a 
href="https://git-wip-us.apache.org/repos/asf/mesos.git";>repository</a> 
(<strong><em>Advanced Users Only</em></strong>)</p>

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/documentation/latest/building/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/latest/building/index.html 
b/content/documentation/latest/building/index.html
index c16a623..0fe2eb4 100644
--- a/content/documentation/latest/building/index.html
+++ b/content/documentation/latest/building/index.html
@@ -115,8 +115,8 @@
 
 <p>1. Download the latest stable release from <a 
href="http://mesos.apache.org/downloads/";>Apache</a> 
(<strong><em>Recommended</em></strong>)</p>
 
-<pre><code>$ wget http://www.apache.org/dist/mesos/1.4.1/mesos-1.4.1.tar.gz
-$ tar -zxf mesos-1.4.1.tar.gz
+<pre><code>$ wget http://www.apache.org/dist/mesos/1.6.0/mesos-1.6.0.tar.gz
+$ tar -zxf mesos-1.6.0.tar.gz
 </code></pre>
 
 <p>2. Clone the Mesos git <a 
href="https://git-wip-us.apache.org/repos/asf/mesos.git";>repository</a> 
(<strong><em>Advanced Users Only</em></strong>)</p>

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/downloads/index.html
----------------------------------------------------------------------
diff --git a/content/downloads/index.html b/content/downloads/index.html
index 5621310..d97be37 100644
--- a/content/downloads/index.html
+++ b/content/downloads/index.html
@@ -538,10 +538,10 @@
   <div class="col-md-8">
     <h1>Download Mesos</h1>
       <p>Download the most recent stable release:
-             <a 
href="http://www.apache.org/dyn/closer.cgi/mesos/1.5.0/mesos-1.5.0.tar.gz";>
-          1.5.0
+             <a 
href="http://www.apache.org/dyn/closer.cgi/mesos/1.6.0/mesos-1.6.0.tar.gz";>
+          1.6.0
         </a>
-        (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12341286";>
+        (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12342239";>
           Release Notes
         </a>)
       </p>

http://git-wip-us.apache.org/repos/asf/mesos-site/blob/2a793735/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 7716aae..24a4fd6 100644
--- a/content/index.html
+++ b/content/index.html
@@ -106,8 +106,8 @@
       </p>
       <p>
         <a class="changelog"
-           
href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=1.5.0";>
-          Mesos 1.5.0 Changelog
+           
href="https://git-wip-us.apache.org/repos/asf?p=mesos.git;a=blob_plain;f=CHANGELOG;hb=1.6.0";>
+          Mesos 1.6.0 Changelog
         </a>
       </p>
     </div><!-- /.jumbotron -->

Reply via email to