|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r58227 - in website/public_html/live/feed: . history
From: daniel_james_at_[hidden]
Date: 2009-12-07 15:21:53
Author: danieljames
Date: 2009-12-07 15:21:52 EST (Mon, 07 Dec 2009)
New Revision: 58227
URL: http://svn.boost.org/trac/boost/changeset/58227
Log:
Add some missing release notes from the 1.40 release.
Text files modified:
website/public_html/live/feed/history.rss | 52 ++++++++++++++++++++++++++++++++++++++-
website/public_html/live/feed/history/boost_1_40_0.qbk | 33 +++++++++++++++++++++++--
website/public_html/live/feed/news.rss | 52 ++++++++++++++++++++++++++++++++++++++-
3 files changed, 130 insertions(+), 7 deletions(-)
Modified: website/public_html/live/feed/history.rss
Modified: website/public_html/live/feed/history/boost_1_40_0.qbk
Modified: website/public_html/live/feed/news.rss
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
==============================================================================
--- website/public_html/live/feed/history.rss (original)
+++ website/public_html/live/feed/history.rss 2009-12-07 15:21:52 EST (Mon, 07 Dec 2009)
@@ -425,12 +425,18 @@
</div>
</div></description></item><item><title>Version 1.40.0</title><pubDate>Thu, 27 Aug 2009 17:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Build System improvements. Updated Libraries: Accumulators, Asio, Circular
- Buffer, Foreach, Function, Fusion, Hash, Interprocess, Intrusive, MPL, Program.Options,
- Proto, Random, Serialization, Unordered, Xpressive.
+ Buffer, Foreach, Function, Fusion, Graph, Hash, Interprocess, Intrusive, MPL,
+ Program.Options, Property Map, Proto, Random, Serialization, Unordered, Xpressive.
</span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.40.0/><description><div class="description">
+ <div id="version_1_40_0.update">
+ <h3><span class="link">Update</span></h3>
+ <p>
+ Added missing notes for Graph and Property Map.
+ </p>
+ </div>
<div id="version_1_40_0.boost_cmake">
<h3><span class="link">Boost.CMake</span></h3>
<p>
@@ -554,6 +560,31 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/graph/index.html">Graph</a>:</span>
+ <ul>
+ <li>
+ Merged in the <a href="/libs/graph_parallel/doc/html/index.html">Parallel
+ Boost Graph Library</a>, giving a full suite of graph algorithms
+ and data structures for distributed-memory computers (such as clusters).
+ </li>
+ <li>
+ Updates to the interface of the compressed sparse row graph, including
+ constructors from unsorted edge lists.
+ </li>
+ <li>
+ An implicit grid graph, saving memory over using the former generator.
+ </li>
+ <li>
+ New algorithms: Dijkstra's single-source shortest path algorithm without
+ a separate color map and an algorithm to find maximal common subgraphs
+ between two graphs.
+ </li>
+ <li>
+ Assorted bug fixes.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
<ul>
<li>
@@ -621,6 +652,23 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/property_map/index.html">Property Map</a>:</span>
+ <ul>
+ <li>
+ Moved property map code into a separate directory, <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">property_map</span><span class="special">/</span></code>. The old files exist and forward to
+ the new ones; the previous files directly in <code><span class="identifier">boost</span><span class="special">/</span></code> will be removed in Boost 1.42.0.
+ </li>
+ <li>
+ Moved distributed property maps to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">graph</span><span class="special">::</span><span class="identifier">parallel</span></code>
+ namespace.
+ </li>
+ <li>
+ Added a property map based on a <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_array</span></code>,
+ providing a simpler interface.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
<ul>
<li>
==============================================================================
--- website/public_html/live/feed/history/boost_1_40_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_40_0.qbk 2009-12-07 15:21:52 EST (Mon, 07 Dec 2009)
@@ -2,9 +2,10 @@
[quickbook 1.4]
[source-mode c++]
[purpose Build System improvements.
- Updated Libraries: Accumulators, Asio, Circular Buffer, Foreach, Function, Fusion, Hash,
- Interprocess, Intrusive, MPL, Program.Options, Proto, Random, Serialization, Unordered,
- Xpressive.]
+ Updated Libraries: Accumulators, Asio, Circular Buffer, Foreach,
+ Function, Fusion, Graph, Hash, Interprocess, Intrusive, MPL,
+ Program.Options, Property Map, Proto, Random, Serialization,
+ Unordered, Xpressive.]
[authors [Dawes, Beman]]
[last-revision Thu, 27 Aug 2009 17:00:00 GMT]
]
@@ -13,6 +14,12 @@
[download http://sourceforge.net/projects/boost/files/boost/1.40.0/]
+[section Update]
+
+Added missing notes for Graph and Property Map.
+
+[endsect]
+
[section Boost.CMake]
Boost.CMake is *now distributed separately*. The cmake build for
@@ -85,6 +92,18 @@
* [phrase library..[@/libs/fusion/index.html Fusion]:]
* Improved compile times for `fusion::vector`.
+* [phrase library..[@/libs/graph/index.html Graph]:]
+ * Merged in the [@/libs/graph_parallel/doc/html/index.html Parallel Boost
+ Graph Library], giving a full suite of graph algorithms and data
+ structures for distributed-memory computers (such as clusters).
+ * Updates to the interface of the compressed sparse row graph, including
+ constructors from unsorted edge lists.
+ * An implicit grid graph, saving memory over using the former generator.
+ * New algorithms: Dijkstra's single-source shortest path algorithm without a
+ separate color map and an algorithm to find maximal common subgraphs
+ between two graphs.
+ * Assorted bug fixes.
+
* [phrase library..[@/libs/functional/hash/index.html Hash]:]
* Automatically configure the float functions using template metaprogramming
instead of trying to configure every possibility manually.
@@ -120,6 +139,14 @@
* Fixed crash on user-inserted items in `variables_map`
([@https://svn.boost.org/trac/boost/ticket/2782 #2782]).
+* [phrase library..[@/libs/property_map/index.html Property Map]:]
+ * Moved property map code into a separate directory, `boost/property_map/`. The
+ old files exist and forward to the new ones; the previous files directly in
+ `boost/` will be removed in Boost 1.42.0.
+ * Moved distributed property maps to `boost::graph::parallel` namespace.
+ * Added a property map based on a `boost::shared_array`, providing a simpler
+ interface.
+
* [phrase library..[@/libs/proto/index.html Proto]:]
* PrimitiveTransforms have stricter conformance to ResultOf protocol.
(Warning: some invalid code may break.)
==============================================================================
--- website/public_html/live/feed/news.rss (original)
+++ website/public_html/live/feed/news.rss 2009-12-07 15:21:52 EST (Mon, 07 Dec 2009)
@@ -425,12 +425,18 @@
</div>
</div></description></item><item><title>Version 1.40.0</title><pubDate>Thu, 27 Aug 2009 17:00:00 GMT</pubDate><boostbook:purpose><span class="brief"><span class="purpose">
Build System improvements. Updated Libraries: Accumulators, Asio, Circular
- Buffer, Foreach, Function, Fusion, Hash, Interprocess, Intrusive, MPL, Program.Options,
- Proto, Random, Serialization, Unordered, Xpressive.
+ Buffer, Foreach, Function, Fusion, Graph, Hash, Interprocess, Intrusive, MPL,
+ Program.Options, Property Map, Proto, Random, Serialization, Unordered, Xpressive.
</span></span></boostbook:purpose><boostbook:download>http://sourceforge.net/projects/boost/files/boost/1.40.0/><description><div class="description">
+ <div id="version_1_40_0.update">
+ <h3><span class="link">Update</span></h3>
+ <p>
+ Added missing notes for Graph and Property Map.
+ </p>
+ </div>
<div id="version_1_40_0.boost_cmake">
<h3><span class="link">Boost.CMake</span></h3>
<p>
@@ -554,6 +560,31 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/graph/index.html">Graph</a>:</span>
+ <ul>
+ <li>
+ Merged in the <a href="/libs/graph_parallel/doc/html/index.html">Parallel
+ Boost Graph Library</a>, giving a full suite of graph algorithms
+ and data structures for distributed-memory computers (such as clusters).
+ </li>
+ <li>
+ Updates to the interface of the compressed sparse row graph, including
+ constructors from unsorted edge lists.
+ </li>
+ <li>
+ An implicit grid graph, saving memory over using the former generator.
+ </li>
+ <li>
+ New algorithms: Dijkstra's single-source shortest path algorithm without
+ a separate color map and an algorithm to find maximal common subgraphs
+ between two graphs.
+ </li>
+ <li>
+ Assorted bug fixes.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/functional/hash/index.html">Hash</a>:</span>
<ul>
<li>
@@ -621,6 +652,23 @@
</ul>
</li>
<li>
+ <span class="library"><a href="/libs/property_map/index.html">Property Map</a>:</span>
+ <ul>
+ <li>
+ Moved property map code into a separate directory, <code><span class="identifier">boost</span><span class="special">/</span><span class="identifier">property_map</span><span class="special">/</span></code>. The old files exist and forward to
+ the new ones; the previous files directly in <code><span class="identifier">boost</span><span class="special">/</span></code> will be removed in Boost 1.42.0.
+ </li>
+ <li>
+ Moved distributed property maps to <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">graph</span><span class="special">::</span><span class="identifier">parallel</span></code>
+ namespace.
+ </li>
+ <li>
+ Added a property map based on a <code><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_array</span></code>,
+ providing a simpler interface.
+ </li>
+ </ul>
+ </li>
+ <li>
<span class="library"><a href="/libs/proto/index.html">Proto</a>:</span>
<ul>
<li>