Added: mesos/site/source/blog/2014-09-23-mesos-0-20-1-released.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/blog/2014-09-23-mesos-0-20-1-released.md?rev=1627421&view=auto
==============================================================================
--- mesos/site/source/blog/2014-09-23-mesos-0-20-1-released.md (added)
+++ mesos/site/source/blog/2014-09-23-mesos-0-20-1-released.md Wed Sep 24 
21:12:44 2014
@@ -0,0 +1,29 @@
+---
+layout: post
+title: Apache Mesos 0.20.1 Released
+permalink: /blog/mesos-0-20-1-released/
+published: true
+post_author:
+  display_name: Adam B
+tags: Release
+---
+
+The latest Mesos release, 0.20.1 is now available for 
[download](http://mesos.apache.org/downloads). One of the major features of 
Mesos 0.20.0 was native Docker support, and that support has been improved in 
0.20.1 by the following bug fixes and improvements:
+
+ * [MESOS-1621](https://issues.apache.org/jira/browse/MESOS-1621) - Docker run 
networking should be configurable and support bridge network
+ * [MESOS-1724](https://issues.apache.org/jira/browse/MESOS-1724) - Can't 
include port in DockerInfo's image
+ * [MESOS-1730](https://issues.apache.org/jira/browse/MESOS-1730) - Should be 
an error if commandinfo shell=true when using docker containerizer
+ * [MESOS-1732](https://issues.apache.org/jira/browse/MESOS-1732) - Mesos 
containerizer doesn't reject tasks with container info set
+ * [MESOS-1737](https://issues.apache.org/jira/browse/MESOS-1737) - 
Isolation=external result in core dump on 0.20.0
+ * [MESOS-1755](https://issues.apache.org/jira/browse/MESOS-1755) - Add docker 
support to mesos-execute
+ * [MESOS-1758](https://issues.apache.org/jira/browse/MESOS-1758) - Freezer 
failure leads to lost task during container destruction.
+ * [MESOS-1762](https://issues.apache.org/jira/browse/MESOS-1762) - Avoid 
docker pull on each container run
+ * [MESOS-1770](https://issues.apache.org/jira/browse/MESOS-1770) - Docker 
with command shell=true should override entrypoint
+ * [MESOS-1809](https://issues.apache.org/jira/browse/MESOS-1809) - Modify 
docker pull to use docker inspect after a successful pull
+
+Full release notes are available in the release 
[CHANGELOG](https://github.com/apache/mesos/blob/master/CHANGELOG).
+
+Upgrading to 0.20.1 can be done seamlessly on a 0.20.0 cluster. If upgrading 
from 0.19.x, please refer to the 
[upgrades](http://mesos.apache.org/documentation/latest/upgrades/) 
documentation.
+
+## Contributors
+Thanks to all the contributors for 0.20.1: Timothy Chen, Jie Yu, Timothy St. 
Clair, Vinod Kone, Chris Heller, Kamil Domański, and Till Toenshoff.

Modified: mesos/site/source/documentation/latest/mesos-c++-style-guide.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-c%2B%2B-style-guide.md?rev=1627421&r1=1627420&r2=1627421&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-c++-style-guide.md (original)
+++ mesos/site/source/documentation/latest/mesos-c++-style-guide.md Wed Sep 24 
21:12:44 2014
@@ -82,3 +82,11 @@ Try<Duration> failoverTimeout =
 * 1 blank line at the end of the file.
 * Elements outside classes (classes, structs, global functions, etc.) should 
be spaced apart by 2 blank lines.
 * Elements inside classes (member variables and functions) should not be 
spaced apart by more than 1 blank line.
+
+## C++11
+We still support older compilers. The whitelist of supported C++11 features is:
+* Static assertions.
+* Multiple right angle brackets.
+* Type inference (`auto` and `decltype`).
+* Rvalue references.
+* Variadic templates.

Modified: mesos/site/source/downloads.html.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/downloads.html.md?rev=1627421&r1=1627420&r2=1627421&view=diff
==============================================================================
--- mesos/site/source/downloads.html.md (original)
+++ mesos/site/source/downloads.html.md Wed Sep 24 21:12:44 2014
@@ -8,6 +8,8 @@ breadcrumb: Downloads
     <h4>Previous Releases</h4>
 
     <ul>
+      <li><a href="http://archive.apache.org/dist/mesos/0.20.0/";>0.20.0</a>
+           (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326835";>Release
 Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.19.1/";>0.19.1</a>
           (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12327173";>Release
 Notes</a>)</li>
       <li><a href="http://archive.apache.org/dist/mesos/0.19.0/";>0.19.0</a>
@@ -48,8 +50,8 @@ breadcrumb: Downloads
   <div class="col-md-8">
     <h1>Download Mesos</h1>
       <p>Download the most recent stable release:
-             <a 
href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.20.0/";>0.20.0</a>
-        (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326835";>Release
 Notes</a>)
+             <a 
href="http://www.apache.org/dyn/mirrors/mirrors.cgi/mesos/0.20.1/";>0.20.1</a>
+        (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12327951";>Release
 Notes</a>)
       </p>
                
       <h4>Getting the code via source control</h4>

Modified: mesos/site/source/index.html.md
URL: 
http://svn.apache.org/viewvc/mesos/site/source/index.html.md?rev=1627421&r1=1627420&r2=1627421&view=diff
==============================================================================
--- mesos/site/source/index.html.md (original)
+++ mesos/site/source/index.html.md Wed Sep 24 21:12:44 2014
@@ -9,7 +9,7 @@ title: Apache Mesos
            <p class="lead">Apache Mesos is a cluster manager that simplifies 
the complexity of running applications on a shared pool of servers.<br /></p>
          </div>
     <div class="col-md-5 text-center download">
-      <a class="btn btn-lg btn-success" 
href="http://mesos.apache.org/downloads/";><span class="glyphicon 
glyphicon-download"></span> Download Mesos 0.20.0</a>
+      <a class="btn btn-lg btn-success" 
href="http://mesos.apache.org/downloads/";><span class="glyphicon 
glyphicon-download"></span> Download Mesos 0.20.1</a>
       <p>or learn how to <a href="http://mesos.apache.org/gettingstarted/";>get 
started</a></p>
     </div>
        </div>
@@ -63,6 +63,10 @@ title: Apache Mesos
   <div class="col-md-5">
     <h3>News</h3>
       <ul>
+        <li><em>September 23, 2014</em> - Mesos 0.20.1 is released!
+            See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12327951";>0.20.1
 release notes</a>
+                                               and <a 
href="/blog/mesos-0-20-1-released/">blog post announcement</a> for more 
details.</li>
+        
                                <li><em>August 21, 2014</em> - Mesos 0.20.0 is 
released!  See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326835";>0.20.0
 release notes</a> and <a href="/blog/mesos-0-20-0-released/">blog post 
announcement</a> for more details.</li>
 
                                <li><em>July 24, 2014</em> - <a 
href="/blog/mesoscon-2014-hackathon-details-announced/">#MesosCon Hackathon 
Details Announced</a></li>
@@ -80,23 +84,9 @@ title: Apache Mesos
             See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326253";>0.19.0
 release notes</a>
             and <a href="/blog/mesos-0-19-0-released/">blog post 
announcement</a> for more details.</li>
         
-        <li><em>May 29, 2014</em> - Mesos 0.18.1 and 0.18.2 are released!
-            See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326752";>0.18.1
 release notes</a>,
-            <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326851";>0.18.2
 release notes</a>
-            and <a href="/blog/mesos-0-18-1-and-0-18-2-released/">blog post 
announcement</a> for more details.
-        </li>
-        
-        <li><em>April 10, 2014</em> - Mesos 0.18.0 is released!
-            See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12326140";>release
 notes</a>
-            and <a href="/blog/mesos-0-18-0-released/">blog post 
announcement</a> for more details.</li>
-        
         <li><em>March 28, 2014</em> - Mesos Community Update #1.
             See the <a href="blog/mesos-community-update-1/">blog 
post</a>.</li>
           
-        <li><em>March 6, 2014</em> - Mesos 0.17.0 is released!
-            See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12325669";>release
 notes</a>
-            and <a 
href="blog/mesos-0-17-0-released-featuring-autorecovery/">blog post 
announcement</a>.</li>
-
       <br />
 
       <h3>Follow Us</h3>


Reply via email to