You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by dl...@apache.org on 2013/11/12 19:02:06 UTC

svn commit: r1541180 - in /mesos: website/ website/_posts/ www/ www/blog/ www/blog/mesos-0-14-2-released/ www/downloads/ www/gettingstarted/

Author: dlester
Date: Tue Nov 12 18:02:05 2013
New Revision: 1541180

URL: http://svn.apache.org/r1541180
Log:
Update Mesos website to reflect latest release of Mesos and publish new blog post.

Added:
    mesos/website/_posts/2013-11-12-mesos-0-14-2.md
    mesos/www/blog/mesos-0-14-2-released/
    mesos/www/blog/mesos-0-14-2-released/index.html
Modified:
    mesos/website/downloads.html
    mesos/website/gettingstarted.html
    mesos/website/index.html
    mesos/www/blog/index.html
    mesos/www/downloads/index.html
    mesos/www/gettingstarted/index.html
    mesos/www/index.html
    mesos/www/sitemap.xml

Added: mesos/website/_posts/2013-11-12-mesos-0-14-2.md
URL: http://svn.apache.org/viewvc/mesos/website/_posts/2013-11-12-mesos-0-14-2.md?rev=1541180&view=auto
==============================================================================
--- mesos/website/_posts/2013-11-12-mesos-0-14-2.md (added)
+++ mesos/website/_posts/2013-11-12-mesos-0-14-2.md Tue Nov 12 18:02:05 2013
@@ -0,0 +1,25 @@
+---
+layout: post
+title: Apache Mesos 0.14.2 Released
+permalink: /blog/mesos-0-14-2-released/
+published: true
+post_author:
+  display_name: Ben Mahler
+  gravatar: fb43656d4d45f940160c3226c53309f5
+  twitter: bmahler
+tags: Release
+---
+
+We recently released Mesos 0.14.2, a bugfix release with only a minor change related to cgroups isolation in 0.14.1. If you're using 0.14.1 with cgroups isolation, it is recommended to upgrade to avoid unnecessary out-of-memory (OOM) killing of jobs. The latest version of Mesos is available on our [downloads](http://mesos.apache.org/downloads/) page.
+
+### Upgrading
+If upgrading from 0.14.x, this upgrade can be applied seamlessly to running clusters. However, if you're upgrading from 0.13.x on a running cluster, please refer to the [Upgrades](http://mesos.apache.org/documentation/latest/upgrades/) document, which details how a seamless upgrade from 0.13.x to 0.14.x can be performed.
+
+### Changes since 0.14.1
+With the release of 0.14.1, when using cgroups isolation, the OOM semantics were altered to enable the kernel OOM killer and to use the memory soft limit combined with memory threshold notifications to induce OOMs in user-space. This was done to attempt to capture memory statistics at the time of OOM for diagnostic purposes. However, this proved to trigger unintended OOMs as the memory purging that occurs when the hard limit is reached was no longer occurring.
+
+0.14.2 no longer uses threshold notifications; the memory hard limit is now used instead to preserve the previous OOM semantics.
+
+For additional details, please see:
+[MESOS-755](https://issues.apache.org/jira/browse/MESOS-755), 
+[MESOS-762](https://issues.apache.org/jira/browse/MESOS-762).
\ No newline at end of file

Modified: mesos/website/downloads.html
URL: http://svn.apache.org/viewvc/mesos/website/downloads.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/website/downloads.html (original)
+++ mesos/website/downloads.html Tue Nov 12 18:02:05 2013
@@ -9,6 +9,7 @@ breadcrumb: Downloads
 		<h4>Previous Releases</h4>
 
 		<ul>
+			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324994">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.0/">0.14.0</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324596&styleName=Text&projectId=12311242">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.13.0/">0.13.0</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324392&styleName=&projectId=12311242">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.12.1/">0.12.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324794">Release Notes</a>)</li>
@@ -20,7 +21,7 @@ breadcrumb: Downloads
 	</div>
 	<div class="span8">
 		<h2>Download Mesos</h2>
-		<p>Download the most recent stable release: <a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324994">Release Notes</a>)</p>
+		<p>Download the most recent stable release: <a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.2</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325324">Release Notes</a>)</p>
 		
 		<h4>Getting the code via source control</h4>
 		<p>The codebase can also be downloaded from the Apache git repository at: <code>https://git-wip-us.apache.org/repos/asf/mesos.git</code>. A read-only git repository is also mirrored on <a href="https://github.com/apache/mesos/tree/master">on Github</a>. (Note: we use <a href="http://reviews.apache.org">Review Board</a> for patches, not pull requests on Github)</p>

Modified: mesos/website/gettingstarted.html
URL: http://svn.apache.org/viewvc/mesos/website/gettingstarted.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/website/gettingstarted.html (original)
+++ mesos/website/gettingstarted.html Tue Nov 12 18:02:05 2013
@@ -32,10 +32,10 @@ breadcrumb: Getting Started
 
 <h3><a name="downloading-mesos">Downloading Mesos</a></h3>
 
-<p>Mesos is available as a tar file, or the source can be downloaded directly from git. To get running with Mesos version 0.14.1, our most-recent release by either:</p>
+<p>Mesos is available as a tar file, or the source can be downloaded directly from git. To get running with Mesos version 0.14.2, our most-recent release by either:</p>
 
 <ul>
-	<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">Download Mesos 0.14.1</a></li>
+	<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.2/">Download Mesos 0.14.2</a></li>
 	<li>Obtain the current Mesos development HEAD by checking it out from Apache Git mirror repository, using: <code>git clone git://git.apache.org/mesos.git</code>, or <code>https://git-wip-us.apache.org/repos/asf/mesos.git</code></li>
 </ul>
 

Modified: mesos/website/index.html
URL: http://svn.apache.org/viewvc/mesos/website/index.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/website/index.html (original)
+++ mesos/website/index.html Tue Nov 12 18:02:05 2013
@@ -11,7 +11,7 @@ title: Apache Mesos
 	    <p class="lead">Apache Mesos is a cluster manager that provides efficient resource isolation and sharing across distributed applications, or <em>frameworks</em>. It can run Hadoop, MPI, Hypertable, Spark, and other applications on a dynamically shared pool of nodes.</p>
 	  </div>
 	  <div class="span5 text-center download">
-	    <a class="btn btn-large btn-success" href="{{ site.url }}/downloads/">Download Mesos 0.14.1</a>
+	    <a class="btn btn-large btn-success" href="{{ site.url }}/downloads/">Download Mesos 0.14.2</a>
 	    <p>or learn how to <a href="{{ site.url }}/gettingstarted/">get started</a></p>
 	  </div>
 	</div>
@@ -65,6 +65,7 @@ title: Apache Mesos
   <div class="span4">
     <h3>News</h3>
 		<ul>
+			<li><em>November 12, 2013</em> - Mesos 0.14.2 is released! See the <a href="http://mesos.apache.org/blog/mesos-0-14-2-released/">blog post announcement</a> for more details.</li>
 			<li><em>October 23, 2013</em> - <a href="http://mesos.apache.org/blog/slave-recovery-in-apache-mesos/">New blog post</a> by Vinod Kone about the Slave Recovery feature introduced in Mesos 0.14.1</li>
 			<li><em>October 21, 2013</em> - Mesos 0.14.1 is released! Now <a href="http://mesos.apache.org/downloads/">available for download</a>.</li>
 			<li><em>October 16, 2013</em> - Mesos 0.14.0 is released! Now <a href="http://mesos.apache.org/downloads/">available for download</a>.</li>

Modified: mesos/www/blog/index.html
URL: http://svn.apache.org/viewvc/mesos/www/blog/index.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/www/blog/index.html (original)
+++ mesos/www/blog/index.html Tue Nov 12 18:02:05 2013
@@ -99,6 +99,9 @@
 </div>
 <div class="span9">
 
+	<h2><a href="/blog/mesos-0-14-2-released/">Apache Mesos 0.14.2 Released</a></h2>
+	<p><em>Posted by Ben Mahler, November 12, 2013</em></p>
+
 	<h2><a href="/blog/slave-recovery-in-apache-mesos/">Slave Recovery in Apache Mesos</a></h2>
 	<p><em>Posted by Vinod Kone, October 23, 2013</em></p>
 

Added: mesos/www/blog/mesos-0-14-2-released/index.html
URL: http://svn.apache.org/viewvc/mesos/www/blog/mesos-0-14-2-released/index.html?rev=1541180&view=auto
==============================================================================
--- mesos/www/blog/mesos-0-14-2-released/index.html (added)
+++ mesos/www/blog/mesos-0-14-2-released/index.html Tue Nov 12 18:02:05 2013
@@ -0,0 +1,164 @@
+<!DOCTYPE html>
+<!--
+
+		 ______                           __                
+		/\  _  \                         /\ \               
+		\ \ \L\ \  _____      __      ___\ \ \___      __   
+		 \ \  __ \/\ '__`\  /'__`\   /'___\ \  _ `\  /'__`\ 
+		  \ \ \/\ \ \ \L\ \/\ \L\.\_/\ \__/\ \ \ \ \/\  __/ 
+		   \ \_\ \_\ \ ,__/\ \__/.\_\ \____\\ \_\ \_\ \____\
+		    \/_/\/_/\ \ \/  \/__/\/_/\/____/ \/_/\/_/\/____/
+		             \ \_\                                  
+		              \/_/                                  
+                                                    
+		       /'\_/`\                                      
+		      /\      \     __    ____    ___     ____      
+		      \ \ \__\ \  /'__`\ /',__\  / __`\  /',__\     
+		       \ \ \_/\ \/\  __//\__, `\/\ \L\ \/\__, `\    
+		        \ \_\\ \_\ \____\/\____/\ \____/\/\____/    
+		         \/_/ \/_/\/____/\/___/  \/___/  \/___/     
+		
+-->
+<html>
+    <head>
+        <meta charset="utf-8">
+        <title>Apache Mesos 0.14.2 Released</title>
+		    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+		    <meta name="description" content="">
+		    <meta name="author" content="">
+
+		    <!-- Le styles -->
+		    <link href="//mesos.apache.org/assets/css/bootstrap.css" rel="stylesheet">
+		    <link href="//mesos.apache.org/assets/css/bootstrap-responsive.min.css" rel="stylesheet">
+		    <link href="//mesos.apache.org/assets/css/main.css" rel="stylesheet">
+				
+		    <!-- JS -->
+		    <script type="text/javascript" src="//mesos.apache.org/assets/js/jquery-1.10.1.min.js"></script>
+		    <script type="text/javascript" src="//mesos.apache.org/assets/js/bootstrap-dropdown.js"></script>
+		
+				<!-- 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>			
+			<!-- navbar excitement -->
+	    <div class="navbar navbar-static-top">
+	      <div class="navbar-inner">
+	        <div class="container">
+						<a href="http://mesos.apache.org" class="logo"><img src="//mesos.apache.org/assets/img/mesos_logo.png" alt="Apache Mesos logo" /></a>
+	          <ul class="nav">
+	            <li><a href="http://mesos.apache.org/gettingstarted/">Getting Started</a></li>
+	            <li><a href="http://mesos.apache.org/documentation/">Documentation</a></li>
+	            <li><a href="http://mesos.apache.org/downloads/">Downloads</a></li>
+	            <li><a href="http://mesos.apache.org/community/">Community</a></li>
+	          </ul>
+	        </div>
+	      </div>
+	    </div><!-- /.navbar -->
+
+
+      <div class="container">
+
+			<!-- magical breadcrumbs -->
+			<ul class="breadcrumb">
+			  <li>
+					<div class="dropdown">
+					  <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation <b class="caret"></b></a>
+					  <ul class="dropdown-menu" role="menu">
+							<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><span class="divider">></span></li>
+				<li><a href="http://mesos.apache.org">Apache Mesos</a></li>
+				
+				<li><span class="divider">></span></li>
+				<li><a href="http://mesos.apache.org/blog/">Blog</a></li>
+				
+			</ul><!-- /breadcrumb -->
+
+			<div class="row-fluid">
+
+<div class="span3">
+	<div class="meta">
+		<span class="author">
+			<img src="http://www.gravatar.com/avatar/fb43656d4d45f940160c3226c53309f5?s=80" class="author_gravatar">
+			<span class="author_contact">
+			<p><strong>Ben Mahler</strong></p>
+			<p><a href="http://twitter.com/bmahler">@bmahler</a></p>
+			</span>
+		</span>
+		<p><em>Posted November 12, 2013</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 span9">
+	<h1>Apache Mesos 0.14.2 Released</h1>
+	
+	<p>We recently released Mesos 0.14.2, a bugfix release with only a minor change related to cgroups isolation in 0.14.1. If you're using 0.14.1 with cgroups isolation, it is recommended to upgrade to avoid unnecessary out-of-memory (OOM) killing of jobs. The latest version of Mesos is available on our <a href="http://mesos.apache.org/downloads/">downloads</a> page.</p>
+
+<h3>Upgrading</h3>
+
+<p>If upgrading from 0.14.x, this upgrade can be applied seamlessly to running clusters. However, if you're upgrading from 0.13.x on a running cluster, please refer to the <a href="http://mesos.apache.org/documentation/latest/upgrades/">Upgrades</a> document, which details how a seamless upgrade from 0.13.x to 0.14.x can be performed.</p>
+
+<h3>Changes since 0.14.1</h3>
+
+<p>With the release of 0.14.1, when using cgroups isolation, the OOM semantics were altered to enable the kernel OOM killer and to use the memory soft limit combined with memory threshold notifications to induce OOMs in user-space. This was done to attempt to capture memory statistics at the time of OOM for diagnostic purposes. However, this proved to trigger unintended OOMs as the memory purging that occurs when the hard limit is reached was no longer occurring.</p>
+
+<p>0.14.2 no longer uses threshold notifications; the memory hard limit is now used instead to preserve the previous OOM semantics.</p>
+
+<p>For additional details, please see:
+<a href="https://issues.apache.org/jira/browse/MESOS-755">MESOS-755</a>,
+<a href="https://issues.apache.org/jira/browse/MESOS-762">MESOS-762</a>.</p>
+
+</div>
+</div>
+			
+	      <hr>
+
+				<!-- footer -->
+	      <div class="footer">
+	        <p>&copy; 2012-2013 <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><!-- /footer -->
+
+	    </div> <!-- /container -->
+
+    </body>
+</html>

Modified: mesos/www/downloads/index.html
URL: http://svn.apache.org/viewvc/mesos/www/downloads/index.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/www/downloads/index.html (original)
+++ mesos/www/downloads/index.html Tue Nov 12 18:02:05 2013
@@ -96,6 +96,7 @@
 		<h4>Previous Releases</h4>
 
 		<ul>
+			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324994">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.0/">0.14.0</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324596&styleName=Text&projectId=12311242">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.13.0/">0.13.0</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324392&styleName=&projectId=12311242">Release Notes</a>)</li>
 			<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.12.1/">0.12.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324794">Release Notes</a>)</li>
@@ -107,7 +108,7 @@
 	</div>
 	<div class="span8">
 		<h2>Download Mesos</h2>
-		<p>Download the most recent stable release: <a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.1</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12324994">Release Notes</a>)</p>
+		<p>Download the most recent stable release: <a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">0.14.2</a> (<a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325324">Release Notes</a>)</p>
 		
 		<h4>Getting the code via source control</h4>
 		<p>The codebase can also be downloaded from the Apache git repository at: <code>https://git-wip-us.apache.org/repos/asf/mesos.git</code>. A read-only git repository is also mirrored on <a href="https://github.com/apache/mesos/tree/master">on Github</a>. (Note: we use <a href="http://reviews.apache.org">Review Board</a> for patches, not pull requests on Github)</p>

Modified: mesos/www/gettingstarted/index.html
URL: http://svn.apache.org/viewvc/mesos/www/gettingstarted/index.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/www/gettingstarted/index.html (original)
+++ mesos/www/gettingstarted/index.html Tue Nov 12 18:02:05 2013
@@ -119,10 +119,10 @@
 
 <h3><a name="downloading-mesos">Downloading Mesos</a></h3>
 
-<p>Mesos is available as a tar file, or the source can be downloaded directly from git. To get running with Mesos version 0.14.1, our most-recent release by either:</p>
+<p>Mesos is available as a tar file, or the source can be downloaded directly from git. To get running with Mesos version 0.14.2, our most-recent release by either:</p>
 
 <ul>
-	<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.1/">Download Mesos 0.14.1</a></li>
+	<li><a href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.14.2/">Download Mesos 0.14.2</a></li>
 	<li>Obtain the current Mesos development HEAD by checking it out from Apache Git mirror repository, using: <code>git clone git://git.apache.org/mesos.git</code>, or <code>https://git-wip-us.apache.org/repos/asf/mesos.git</code></li>
 </ul>
 

Modified: mesos/www/index.html
URL: http://svn.apache.org/viewvc/mesos/www/index.html?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/www/index.html (original)
+++ mesos/www/index.html Tue Nov 12 18:02:05 2013
@@ -96,7 +96,7 @@
 	    <p class="lead">Apache Mesos is a cluster manager that provides efficient resource isolation and sharing across distributed applications, or <em>frameworks</em>. It can run Hadoop, MPI, Hypertable, Spark, and other applications on a dynamically shared pool of nodes.</p>
 	  </div>
 	  <div class="span5 text-center download">
-	    <a class="btn btn-large btn-success" href="http://mesos.apache.org/downloads/">Download Mesos 0.14.1</a>
+	    <a class="btn btn-large btn-success" href="http://mesos.apache.org/downloads/">Download Mesos 0.14.2</a>
 	    <p>or learn how to <a href="http://mesos.apache.org/gettingstarted/">get started</a></p>
 	  </div>
 	</div>
@@ -150,6 +150,7 @@
   <div class="span4">
     <h3>News</h3>
 		<ul>
+			<li><em>November 12, 2013</em> - Mesos 0.14.2 is released! See the <a href="http://mesos.apache.org/blog/mesos-0-14-2-released/">blog post announcement</a> for more details.</li>
 			<li><em>October 23, 2013</em> - <a href="http://mesos.apache.org/blog/slave-recovery-in-apache-mesos/">New blog post</a> by Vinod Kone about the Slave Recovery feature introduced in Mesos 0.14.1</li>
 			<li><em>October 21, 2013</em> - Mesos 0.14.1 is released! Now <a href="http://mesos.apache.org/downloads/">available for download</a>.</li>
 			<li><em>October 16, 2013</em> - Mesos 0.14.0 is released! Now <a href="http://mesos.apache.org/downloads/">available for download</a>.</li>

Modified: mesos/www/sitemap.xml
URL: http://svn.apache.org/viewvc/mesos/www/sitemap.xml?rev=1541180&r1=1541179&r2=1541180&view=diff
==============================================================================
--- mesos/www/sitemap.xml (original)
+++ mesos/www/sitemap.xml Tue Nov 12 18:02:05 2013
@@ -5,6 +5,10 @@
         <lastmod>2013-10-29T03:04:10-07:00</lastmod>
     </url>
     <url>
+        <loc>http://mesos.apache.org/blog/mesos-0-14-2-released/</loc>
+        <lastmod>2013-11-12T09:26:35-08:00</lastmod>
+    </url>
+    <url>
         <loc>http://mesos.apache.org/blog/</loc>
         <lastmod>2013-10-29T03:04:10-07:00</lastmod>
     </url>