|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r58800 - in website/public_html/beta/feed: . history
From: daniel_james_at_[hidden]
Date: 2010-01-08 00:12:13
Author: danieljames
Date: 2010-01-08 00:12:12 EST (Fri, 08 Jan 2010)
New Revision: 58800
URL: http://svn.boost.org/trac/boost/changeset/58800
Log:
Unordered and iostreams release notes.
Text files modified:
website/public_html/beta/feed/history.rss | 46 +++++++++++++++++++++++++++++++++++++++
website/public_html/beta/feed/history/boost_1_42_0.qbk | 24 ++++++++++++++++++++
website/public_html/beta/feed/news.rss | 46 +++++++++++++++++++++++++++++++++++++++
3 files changed, 114 insertions(+), 2 deletions(-)
Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss (original)
+++ website/public_html/beta/feed/history.rss 2010-01-08 00:12:12 EST (Fri, 08 Jan 2010)
@@ -6,7 +6,7 @@
<description/>
<language>en-us</language>
<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.42.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ <item><title>Version 1.42.0</title><pubDate>$Date: 2010/01/08 05:11:15 $</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Updated Libraries:
</span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.42.0/><description><div class="description">
@@ -80,6 +80,26 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/iostreams/index.html">Iostreams</a>:</span>
+ <ul>
+ <li>
+ Fixed many outstanding issues. Thanks to Richard Smith for his work on
+ this. (<a href="https://svn.boost.org/trac/boost/ticket/3612">#3612</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3311">#3311</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2094">#2094</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3010">#3010</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2894">#2894</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3011">#3011</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3352">#3352</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3505">#3505</a>).
+ </li>
+ <li>
+ For more information see the <a href="/libs/iostreams/doc/release_notes.html">library
+ release notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
<ul>
<li>
@@ -152,6 +172,30 @@
</li>
</ul>
</li>
+ <li>
+ <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+ <ul>
+ <li>
+ Support instantiating the containers with incomplete value types.
+ </li>
+ <li>
+ Add <code><span class="identifier">erase_return_void</span></code>
+ as a temporary workaround for the current <code><span class="identifier">erase</span></code>
+ which can be inefficient because it has to find the next element to return
+ an iterator (http://svn.boost.org/trac/boost/ticket/3693 #3693).
+ </li>
+ <li>
+ Add templated find overload for compatible keys.
+ </li>
+ <li>
+ Improved codegear compatibility.
+ </li>
+ <li>
+ Other minor changes, full details in <a href="/doc/html/unordered/changes.html#unordered.changes.boost_1_42_0">the
+ changelog</a>.
+ </li>
+ </ul>
+ </li>
</ul>
</div>
<div id="version_1_42_0.compilers_tested">
Modified: website/public_html/beta/feed/history/boost_1_42_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_42_0.qbk (original)
+++ website/public_html/beta/feed/history/boost_1_42_0.qbk 2010-01-08 00:12:12 EST (Fri, 08 Jan 2010)
@@ -72,6 +72,18 @@
Formerly, they were hardcoded as [^unsigned long] and [^int] respectively. Please, use the
provided typedefs in new code (and update old code as soon as possible).
+* [phrase library..[@/libs/iostreams/index.html Iostreams]:]
+ * Fixed many outstanding issues. Thanks to Richard Smith for his work on this.
+ ([@https://svn.boost.org/trac/boost/ticket/3612 #3612],
+ [@https://svn.boost.org/trac/boost/ticket/3311 #3311],
+ [@https://svn.boost.org/trac/boost/ticket/2094 #2094],
+ [@https://svn.boost.org/trac/boost/ticket/3010 #3010],
+ [@https://svn.boost.org/trac/boost/ticket/2894 #2894],
+ [@https://svn.boost.org/trac/boost/ticket/3011 #3011],
+ [@https://svn.boost.org/trac/boost/ticket/3352 #3352],
+ [@https://svn.boost.org/trac/boost/ticket/3505 #3505]).
+ * For more information see the
+ [@/libs/iostreams/doc/release_notes.html library release notes].
* [phrase library..[@/libs/program_options/index.html Program.Options]:]
* Information about option name added to a few exception classes and
@@ -118,6 +130,18 @@
[@https://svn.boost.org/trac/boost/ticket/3763 #3763],
[@https://svn.boost.org/trac/boost/ticket/3764 #3764]
+* [phrase library..[@/libs/unordered/index.html Unordered]:]
+ * Support instantiating the containers with incomplete value types.
+ * Add `erase_return_void` as a temporary workaround for the current
+ `erase` which can be inefficient because it has to find the next
+ element to return an iterator
+ (http://svn.boost.org/trac/boost/ticket/3693 #3693).
+ * Add templated find overload for compatible keys.
+ * Improved codegear compatibility.
+ * Other minor changes, full details in
+ [@/doc/html/unordered/changes.html#unordered.changes.boost_1_42_0
+ the changelog].
+
[endsect]
[section Compilers Tested]
Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss (original)
+++ website/public_html/beta/feed/news.rss 2010-01-08 00:12:12 EST (Fri, 08 Jan 2010)
@@ -6,7 +6,7 @@
<description/>
<language>en-us</language>
<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.42.0</title><pubDate>$Date$</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
+ <item><title>Version 1.42.0</title><pubDate>$Date: 2010/01/08 05:11:15 $</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
New Libraries: Updated Libraries:
</span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.42.0/><description><div class="description">
@@ -80,6 +80,26 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/iostreams/index.html">Iostreams</a>:</span>
+ <ul>
+ <li>
+ Fixed many outstanding issues. Thanks to Richard Smith for his work on
+ this. (<a href="https://svn.boost.org/trac/boost/ticket/3612">#3612</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3311">#3311</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2094">#2094</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3010">#3010</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/2894">#2894</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3011">#3011</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3352">#3352</a>,
+ <a href="https://svn.boost.org/trac/boost/ticket/3505">#3505</a>).
+ </li>
+ <li>
+ For more information see the <a href="/libs/iostreams/doc/release_notes.html">library
+ release notes</a>.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/program_options/index.html">Program.Options</a>:</span>
<ul>
<li>
@@ -152,6 +172,30 @@
</li>
</ul>
</li>
+ <li>
+ <span class="library"><a href="/libs/unordered/index.html">Unordered</a>:</span>
+ <ul>
+ <li>
+ Support instantiating the containers with incomplete value types.
+ </li>
+ <li>
+ Add <code><span class="identifier">erase_return_void</span></code>
+ as a temporary workaround for the current <code><span class="identifier">erase</span></code>
+ which can be inefficient because it has to find the next element to return
+ an iterator (http://svn.boost.org/trac/boost/ticket/3693 #3693).
+ </li>
+ <li>
+ Add templated find overload for compatible keys.
+ </li>
+ <li>
+ Improved codegear compatibility.
+ </li>
+ <li>
+ Other minor changes, full details in <a href="/doc/html/unordered/changes.html#unordered.changes.boost_1_42_0">the
+ changelog</a>.
+ </li>
+ </ul>
+ </li>
</ul>
</div>
<div id="version_1_42_0.compilers_tested">
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk