$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58806 - trunk/libs/iostreams/doc
From: daniel_james_at_[hidden]
Date: 2010-01-08 01:44:34
Author: danieljames
Date: 2010-01-08 01:44:33 EST (Fri, 08 Jan 2010)
New Revision: 58806
URL: http://svn.boost.org/trac/boost/changeset/58806
Log:
Iostreams release notes for 1.42 and backdated for 1.41.
Text files modified: 
   trunk/libs/iostreams/doc/release_notes.html |    85 +++++++++++++++++++++++++++++++++++++++ 
   1 files changed, 84 insertions(+), 1 deletions(-)
Modified: trunk/libs/iostreams/doc/release_notes.html
==============================================================================
--- trunk/libs/iostreams/doc/release_notes.html	(original)
+++ trunk/libs/iostreams/doc/release_notes.html	2010-01-08 01:44:33 EST (Fri, 08 Jan 2010)
@@ -14,6 +14,89 @@
 
 <!-- End Banner -->
 
+<h4>1.42</h4>
+
+<p>
+Fixed many outstanding issues. Thanks to Richard Smith for mworking on a lot
+of these changes.
+</p>
+
+<ul> 
+  <li> 
+    Allocate exceptions on the stack, not the heap (#3612).
+  </li> 
+  <li> 
+    Fix unthrown exceptions. (#3311).
+  </li> 
+  <li> 
+    Use <code>boost::throw_exception</code> to throw exceptions
+    (#2094).
+  </li> 
+  <li> 
+    Add missing include guard (#3010).
+  </li> 
+  <li> 
+    Use the correct type for buffer_size and pback_size parameters (#2894).
+  </li> 
+  <li> 
+    Support <code>boost::ref(std::istream)</code> in code_converter (#3011).
+  </li> 
+  <li> 
+    Fix CRC on x64 during gzip decompression (#3352).
+  </li> 
+  <li> 
+    Fix mapped file errors in windows (#3505).
+  </li> 
+  <li> 
+    Improved support for Visual C++ 2010.
+  </li> 
+  <li> 
+    Fix usage requirements in boost build.
+  </li> 
+  <li> 
+    Fix some boundary checks in <code>restrict</code> and <code>slice</code>.
+  </li> 
+  <li> 
+    Some minor documentation fixes.
+  </li> 
+  <li> 
+    Avoid Apple macro substitutions for <code>check</code>.
+  </li> 
+</ul>
+
+<h4>1.41</h4>
+
+<p>
+Some old unreleased developments. There are still several open issues that
+should be fixed in the next version.
+</p>
+<ul> 
+  <li> 
+    Add a grep filter (#1627).
+  </li> 
+  <li> 
+    Support archives with multiple members (#1896).
+  </li> 
+  <li> 
+    Make <code><span class="identifier">tee</span></code> work with input
+    streams (#791).
+  </li> 
+  <li> 
+    Improved filesystem interoperability.
+  </li> 
+  <li> 
+    Several warnings fixed or suppressed (including
+    #1618,
+    #1875,
+    #2779).
+  </li> 
+  <li> 
+    Various other fixes (including
+    #1580,
+    #1671).
+  </li> 
+</ul>
+
 <h3>1.35</h3>
 
 <P>1. The semantics of close has been modified:</P>
@@ -25,7 +108,7 @@
 <LI>Generic streams and stream buffers and filtering streams and stream buffers are now Closable. For filtering streams and stream buffers, <CODE>close</CODE> calls pop.
 </UL>
 
-<P><I>These changes will break some existing code</I>. They were necessary to resolve inconsistencies in the prior specification that resulted in a number of reported bugs.</P>
+<P><EM>These changes will break some existing code</EM>. They were necessary to resolve inconsistencies in the prior specification that resulted in a number of reported bugs.</P>
 
 <P>2. The function template slice has been introduced as an alias of restrict, for platforms that treat <code>restrict</code> as a keyword.</P>