$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-09-02 19:12:59
Author: danieljames
Date: 2008-09-02 19:12:57 EDT (Tue, 02 Sep 2008)
New Revision: 48550
URL: http://svn.boost.org/trac/boost/changeset/48550
Log:
Add release details for circular buffer. Thanks to Dean Michael Berris.
Text files modified: 
   website/public_html/beta/feed/downloads.rss            |    13 +++++++++++--                           
   website/public_html/beta/feed/history.rss              |    13 +++++++++++--                           
   website/public_html/beta/feed/history/boost_1_36_0.qbk |     5 ++++-                                   
   website/public_html/beta/feed/news.rss                 |    13 +++++++++++--                           
   4 files changed, 37 insertions(+), 7 deletions(-)
Modified: website/public_html/beta/feed/downloads.rss
 Modified: website/public_html/beta/feed/history.rss
 Modified: website/public_html/beta/feed/history/boost_1_36_0.qbk
 Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/downloads.rss	(original)
+++ website/public_html/beta/feed/downloads.rss	2008-09-02 19:12:57 EDT (Tue, 02 Sep 2008)
@@ -8,8 +8,8 @@
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
   <item><title>Version 1.36.0</title><pubDate>Thu, 14 Aug 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
       New Libraries: Accumulators, Exception, Units, Unordered. Updated Libraries:
-      Asio, Assign, Foreach, Function, Hash, Interprocess, Intrusive, Math, Multi-index
-      Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
+      Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess, Intrusive,
+      Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
     </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445><description><div class="description">
   
   <div id="version_1_36_0.new_libraries">
@@ -99,6 +99,15 @@
         <span class="special">);</span></code>.
       </li>
       <li>
+        <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
+        <ul>
+          <li>
+            Default constructor now doesn't allocate memory, and sets the capacity
+            of the buffer to 0
+          </li>
+        </ul>
+      </li>
+      <li>
         <span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span> <code><span class="identifier">BOOST_FOREACH</span></code> macro for easily iterating
         over the elements of a sequence, from Eric Niebler.
         <ul>
==============================================================================
--- website/public_html/beta/feed/history.rss	(original)
+++ website/public_html/beta/feed/history.rss	2008-09-02 19:12:57 EDT (Tue, 02 Sep 2008)
@@ -8,8 +8,8 @@
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
   <item><title>Version 1.36.0</title><pubDate>Thu, 14 Aug 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
       New Libraries: Accumulators, Exception, Units, Unordered. Updated Libraries:
-      Asio, Assign, Foreach, Function, Hash, Interprocess, Intrusive, Math, Multi-index
-      Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
+      Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess, Intrusive,
+      Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
     </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445><description><div class="description">
   
   <div id="version_1_36_0.new_libraries">
@@ -99,6 +99,15 @@
         <span class="special">);</span></code>.
       </li>
       <li>
+        <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
+        <ul>
+          <li>
+            Default constructor now doesn't allocate memory, and sets the capacity
+            of the buffer to 0
+          </li>
+        </ul>
+      </li>
+      <li>
         <span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span> <code><span class="identifier">BOOST_FOREACH</span></code> macro for easily iterating
         over the elements of a sequence, from Eric Niebler.
         <ul>
==============================================================================
--- website/public_html/beta/feed/history/boost_1_36_0.qbk	(original)
+++ website/public_html/beta/feed/history/boost_1_36_0.qbk	2008-09-02 19:12:57 EDT (Tue, 02 Sep 2008)
@@ -2,7 +2,7 @@
     [quickbook 1.4]
     [source-mode c++]
     [purpose New Libraries: Accumulators, Exception, Units, Unordered.
-    Updated Libraries: Asio, Assign, Foreach, Function, Hash, Interprocess,
+    Updated Libraries: Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess,
     Intrusive, Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread,
     Wave, Xpressive.]
     [authors [Dawes, Beman]]
@@ -44,6 +44,9 @@
   `list_of()` (and its variants) now has overloaded comparison operators. This
   allows you to write test code such as
   `BOOST_CHECK_EQUAL( my_container, list_of(2)(3)(4)(5) );`.
+* [phrase library..[@/libs/circular_buffer/index.html Circular Buffer]:]
+  * Default constructor now doesn't allocate memory, and sets the
+    capacity of the buffer to 0
 * [phrase library..[@/libs/foreach/index.html Foreach]:] `BOOST_FOREACH` macro for
   easily iterating over the elements of a sequence, from Eric Niebler.
   * New `BOOST_REVERSE_FOREACH` macro for iterating over a sequence in reverse.
==============================================================================
--- website/public_html/beta/feed/news.rss	(original)
+++ website/public_html/beta/feed/news.rss	2008-09-02 19:12:57 EDT (Tue, 02 Sep 2008)
@@ -8,8 +8,8 @@
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
   <item><title>Version 1.36.0</title><pubDate>Thu, 14 Aug 2008 12:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
       New Libraries: Accumulators, Exception, Units, Unordered. Updated Libraries:
-      Asio, Assign, Foreach, Function, Hash, Interprocess, Intrusive, Math, Multi-index
-      Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
+      Asio, Assign, Circular Buffer, Foreach, Function, Hash, Interprocess, Intrusive,
+      Math, Multi-index Containers, MPI, PtrContainer, Spirit, Thread, Wave, Xpressive.
     </span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=619445><description><div class="description">
   
   <div id="version_1_36_0.new_libraries">
@@ -99,6 +99,15 @@
         <span class="special">);</span></code>.
       </li>
       <li>
+        <span class="library"><a href="/libs/circular_buffer/index.html">Circular Buffer</a>:</span>
+        <ul>
+          <li>
+            Default constructor now doesn't allocate memory, and sets the capacity
+            of the buffer to 0
+          </li>
+        </ul>
+      </li>
+      <li>
         <span class="library"><a href="/libs/foreach/index.html">Foreach</a>:</span> <code><span class="identifier">BOOST_FOREACH</span></code> macro for easily iterating
         over the elements of a sequence, from Eric Niebler.
         <ul>
 
$include_dir="/home/hyper-archives/boost-commit/include";
include("$include_dir/msg-footer.inc");
?>