Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84775 - in website/public_html/live: feed/history generated generated/state users/history
From: dnljms_at_[hidden]
Date: 2013-06-14 03:12:03


Author: danieljames
Date: 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013)
New Revision: 84775
URL: http://svn.boost.org/trac/boost/changeset/84775

Log:
Add deprecation notice to release notes.

Text files modified:
   website/public_html/live/feed/history/boost_1_54_0.qbk | 22 +++++
   website/public_html/live/generated/dev.rss | 165 ++++++++++++++++++++++----------------
   website/public_html/live/generated/download-items.html | 10 +-
   website/public_html/live/generated/state/feed-pages.txt | 14 +-
   website/public_html/live/generated/state/rss-items.txt | 167 +++++++++++++++++++++++----------------
   website/public_html/live/users/history/version_1_54_0.html | 165 ++++++++++++++++++++++----------------
   6 files changed, 323 insertions(+), 220 deletions(-)

Modified: website/public_html/live/feed/history/boost_1_54_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_54_0.qbk Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/feed/history/boost_1_54_0.qbk 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -2,10 +2,12 @@
     [quickbook 1.5]
     [source-mode c++]
     [purpose
+ Changes to supported CPUs.
         New Libraries: Log, TTI, Type Erasure.
         Updated Libraries: Accumulators, Algorithm, Any, Asio, Chrono, Circular Buffer, Container, Context,
         Coroutine, Geometry, Graph, Interprocess, Intrusive, Iostreams, Lexical Cast, Math, Move, Multiprecision, Polygon, Property Map,
         Thread, Type Traits, uBLAS, Unordered, Utility, Variant, Wave, xpressive
+ Deprecated Library: Signals.
     ]
     [authors [Clow, Marshall]]
     [last-revision ]
@@ -35,6 +37,8 @@
 
 [section News]
 
+[section Supported CPUs]
+
 Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target is
 i486. The 80386 target was not properly supported by [@/libs/smart_ptr/
 Boost.SmartPtr] and [@/libs/atomic/ Boost.Atomic] (as well as the libraries
@@ -71,6 +75,20 @@
 
 [endsect]
 
+[section Signals deprecated]
+
+Boost.Signals is no longer being actively maintained, so it has been
+deprecated. Do not use Boost.Signals for new development (use
+[@/libs/signals2/ Boost.Signals2] instead). If you have existing
+Boost.Signals-based code, it will continue to work, but consider moving to
+Boost.Signals2. There is
+[@/doc/html/signals2/api_changes.html#signals2.porting a porting guide] in the
+Signals2 documentation.
+
+[endsect]
+
+[endsect]
+
 [section New Libraries]
 
 * [phrase library..[@/libs/log/ Log]:]
@@ -313,6 +331,10 @@
 * [phrase library..[@/libs/property_map/ PropertyMap]:]
   * Added `compose_property_map` from Guillaume Pinot.
 
+* [phrase library..[@/libs/signals/ Signals]:]
+ * No longer actively maintained, so it is deprecated.
+ Use [@/libs/signals2 Signals2] for new development.
+
 * [phrase library..[@/libs/thread/ Thread]:]
   * ['New Features:]
     * [@http://svn.boost.org/trac/boost/ticket/7285 #7285] C++11 compliance: Allow to pass movable arguments for call_once.

Modified: website/public_html/live/generated/dev.rss
==============================================================================
--- website/public_html/live/generated/dev.rss Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/generated/dev.rss 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -13,77 +13,91 @@
 
   <div id="version_1_54_0.news">
     <h3><span class="link">News</span></h3>
- <p>
- Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
- is i486. The 80386 target was not properly supported by <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/smart_ptr/">Boost.SmartPtr</a>
- and <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/atomic/">Boost.Atomic</a> (as well as the libraries
- that used them internally) even before this release. Some Boost libraries may
- have higher requirements on the minimum target CPU (like <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/log/">Boost.Log</a>
- for example), see the respective library documentation for details.
- </p>
- <p>
- Also by default, when building Boost for x86 32-bit targets it will compile
- for i686 (Pentium Pro) and later CPUs. This can be changed by specifying the
- <tt>instruction-set</tt> property in <tt>b2</tt> or <tt>bjam</tt>
- command line, for example:
- </p>
+ <div id="version_1_54_0.news.supported_cpus">
+ <h3><span class="link">Supported CPUs</span></h3>
+ <p>
+ Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
+ is i486. The 80386 target was not properly supported by <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/smart_ptr/">Boost.SmartPtr</a>
+ and <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/atomic/">Boost.Atomic</a> (as well as the libraries
+ that used them internally) even before this release. Some Boost libraries
+ may have higher requirements on the minimum target CPU (like <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/log/">Boost.Log</a>
+ for example), see the respective library documentation for details.
+ </p>
+ <p>
+ Also by default, when building Boost for x86 32-bit targets it will compile
+ for i686 (Pentium Pro) and later CPUs. This can be changed by specifying
+ the <tt>instruction-set</tt> property in <tt>b2</tt>
+ or <tt>bjam</tt> command line, for example:
+ </p>
 <pre>b2 variant=release architecture=x86 instruction-set=i486 stage
 </pre>
- <p>
- Possible values for the <tt>instruction-set</tt> are:
- </p>
- <ul>
- <li>
- <div>
- Target for the host CPU: <tt>native</tt>
- </div>
- </li>
- <li>
- <div>
- Generic x86 CPUs: <tt>i486</tt>, <tt>i586</tt>, <tt>i686</tt>
- </div>
- </li>
- <li>
- <div>
- Intel CPUs: <tt>pentium</tt>, <tt>pentium-mmx</tt>,
- <tt>pentiumpro</tt>, <tt>pentium2</tt>, <tt>pentium3</tt>,
- <tt>pentium3m</tt>, <tt>pentium-m</tt>, <tt>pentium4</tt>,
- <tt>pentium4m</tt>, <tt>prescott</tt>, <tt>nocona</tt>,
- <tt>core2</tt>, <tt>corei7</tt>, <tt>corei7-avx</tt>,
- <tt>core-avx-i</tt>, <tt>conroe</tt>, <tt>conroe-xe</tt>,
- <tt>conroe-l</tt>, <tt>allendale</tt>, <tt>merom</tt>,
- <tt>merom-xe</tt>, <tt>kentsfield</tt>, <tt>kentsfield-xe</tt>,
- <tt>penryn</tt>, <tt>wolfdale</tt>, <tt>yorksfield</tt>,
- <tt>nehalem</tt>, <tt>sandy-bridge</tt>, <tt>ivy-bridge</tt>,
- <tt>haswell</tt>, <tt>atom</tt>
- </div>
- </li>
- <li>
- <div>
- AMD CPUs: <tt>k6</tt>, <tt>k6-2</tt>, <tt>k6-3</tt>,
- <tt>athlon</tt>, <tt>athlon-tbird</tt>, <tt>athlon-4</tt>,
- <tt>athlon-xp</tt>, <tt>athlon-mp</tt>, <tt>k8</tt>,
- <tt>opteron</tt>, <tt>athlon64</tt>, <tt>athlon-fx</tt>,
- <tt>k8-sse3</tt>, <tt>opteron-sse3</tt>, <tt>athlon64-sse3</tt>,
- <tt>amdfam10</tt>, <tt>barcelona</tt>, <tt>bdver1</tt>,
- <tt>bdver2</tt>, <tt>bdver3</tt>, <tt>btver1</tt>,
- <tt>btver2</tt>
- </div>
- </li>
- <li>
- <div>
- VIA CPUs: <tt>c3</tt>, <tt>c3-2</tt>
- </div>
- </li>
- <li>
- <div>
- IDT CPUs: <tt>winchip-c6</tt>, <tt>winchip2</tt>
- </div>
- </li>
- </ul>
- <p>
- Note that not all these values may be supported by a particular compiler.
- </p>
+ <p>
+ Possible values for the <tt>instruction-set</tt> are:
+ </p>
+ <ul>
+ <li>
+ <div>
+ Target for the host CPU: <tt>native</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ Generic x86 CPUs: <tt>i486</tt>, <tt>i586</tt>,
+ <tt>i686</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ Intel CPUs: <tt>pentium</tt>, <tt>pentium-mmx</tt>,
+ <tt>pentiumpro</tt>, <tt>pentium2</tt>, <tt>pentium3</tt>,
+ <tt>pentium3m</tt>, <tt>pentium-m</tt>, <tt>pentium4</tt>,
+ <tt>pentium4m</tt>, <tt>prescott</tt>, <tt>nocona</tt>,
+ <tt>core2</tt>, <tt>corei7</tt>, <tt>corei7-avx</tt>,
+ <tt>core-avx-i</tt>, <tt>conroe</tt>, <tt>conroe-xe</tt>,
+ <tt>conroe-l</tt>, <tt>allendale</tt>, <tt>merom</tt>,
+ <tt>merom-xe</tt>, <tt>kentsfield</tt>, <tt>kentsfield-xe</tt>,
+ <tt>penryn</tt>, <tt>wolfdale</tt>, <tt>yorksfield</tt>,
+ <tt>nehalem</tt>, <tt>sandy-bridge</tt>, <tt>ivy-bridge</tt>,
+ <tt>haswell</tt>, <tt>atom</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ AMD CPUs: <tt>k6</tt>, <tt>k6-2</tt>, <tt>k6-3</tt>,
+ <tt>athlon</tt>, <tt>athlon-tbird</tt>, <tt>athlon-4</tt>,
+ <tt>athlon-xp</tt>, <tt>athlon-mp</tt>, <tt>k8</tt>,
+ <tt>opteron</tt>, <tt>athlon64</tt>, <tt>athlon-fx</tt>,
+ <tt>k8-sse3</tt>, <tt>opteron-sse3</tt>, <tt>athlon64-sse3</tt>,
+ <tt>amdfam10</tt>, <tt>barcelona</tt>, <tt>bdver1</tt>,
+ <tt>bdver2</tt>, <tt>bdver3</tt>, <tt>btver1</tt>,
+ <tt>btver2</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ VIA CPUs: <tt>c3</tt>, <tt>c3-2</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ IDT CPUs: <tt>winchip-c6</tt>, <tt>winchip2</tt>
+ </div>
+ </li>
+ </ul>
+ <p>
+ Note that not all these values may be supported by a particular compiler.
+ </p>
+ </div>
+ <div id="version_1_54_0.news.signals_deprecated">
+ <h3><span class="link">Signals deprecated</span></h3>
+ <p>
+ Boost.Signals is no longer being actively maintained, so it has been deprecated.
+ Do not use Boost.Signals for new development (use <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals2/">Boost.Signals2</a>
+ instead). If you have existing Boost.Signals-based code, it will continue
+ to work, but consider moving to Boost.Signals2. There is <a href="http://www.boost.org/doc/libs/1_54_0_beta1/doc/html/signals2/api_changes.html#signals2.porting">a
+ porting guide</a> in the Signals2 documentation.
+ </p>
+ </div>
   </div>
   <div id="version_1_54_0.new_libraries">
     <h3><span class="link">New Libraries</span></h3>
@@ -996,6 +1010,19 @@
       </li>
       <li>
         <div>
+ <span class="library"><a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals/">Signals</a>:</span>
+ <ul>
+ <li>
+ <div>
+ No longer actively maintained, so it is deprecated. Use <a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals2">Signals2</a>
+ for new development.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library"><a href="http://www.boost.org/doc/libs/1_54_0_beta1/libs/thread/">Thread</a>:</span>
           <ul>
             <li>

Modified: website/public_html/live/generated/download-items.html
==============================================================================
--- website/public_html/live/generated/download-items.html Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/generated/download-items.html 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -32,11 +32,11 @@
 
               <p class="news-description">
               <span class="brief"><span class="purpose">
- New Libraries: Log, TTI, Type Erasure. Updated Libraries: Accumulators, Algorithm,
- Any, Asio, Chrono, Circular Buffer, Container, Context, Coroutine, Geometry,
- Graph, Interprocess, Intrusive, Iostreams, Lexical Cast, Math, Move, Multiprecision,
- Polygon, Property Map, Thread, Type Traits, uBLAS, Unordered, Utility, Variant,
- Wave, xpressive
+ Changes to supported CPUs. New Libraries: Log, TTI, Type Erasure. Updated Libraries:
+ Accumulators, Algorithm, Any, Asio, Chrono, Circular Buffer, Container, Context,
+ Coroutine, Geometry, Graph, Interprocess, Intrusive, Iostreams, Lexical Cast,
+ Math, Move, Multiprecision, Polygon, Property Map, Thread, Type Traits, uBLAS,
+ Unordered, Utility, Variant, Wave, xpressive Deprecated Library: Signals.
 </span></span></p>
 
 <ul class="menu">

Modified: website/public_html/live/generated/state/feed-pages.txt
==============================================================================
--- website/public_html/live/generated/state/feed-pages.txt Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/generated/state/feed-pages.txt 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -2006,7 +2006,7 @@
 -id
 "version_1_54_0
 -last_modified
-.1370909390.07
+.1371193844.69
 -location
 "users/history/version_1_54_0.html
 -notice
@@ -2016,14 +2016,14 @@
 "In Progress
 -purpose
 "
-" New Libraries: Log, TTI, Type Erasure. Updated Libraries: Accumulators, Algorithm,
-" Any, Asio, Chrono, Circular Buffer, Container, Context, Coroutine, Geometry,
-" Graph, Interprocess, Intrusive, Iostreams, Lexical Cast, Math, Move, Multiprecision,
-" Polygon, Property Map, Thread, Type Traits, uBLAS, Unordered, Utility, Variant,
-" Wave, xpressive
+" Changes to supported CPUs. New Libraries: Log, TTI, Type Erasure. Updated Libraries:
+" Accumulators, Algorithm, Any, Asio, Chrono, Circular Buffer, Container, Context,
+" Coroutine, Geometry, Graph, Interprocess, Intrusive, Iostreams, Lexical Cast,
+" Math, Move, Multiprecision, Polygon, Property Map, Thread, Type Traits, uBLAS,
+" Unordered, Utility, Variant, Wave, xpressive Deprecated Library: Signals.
 "
 -qbk_hash
-"767d805db7f8d1e77dc18b04c3504f3fa52ae74e5b697585685c26c350e576c1
+"17f67ce903b3a7ffc98294299ebf4dfd26d3081fcdabe198796679107ff430f9
 -release_status
 "beta
 -title

Modified: website/public_html/live/generated/state/rss-items.txt
==============================================================================
--- website/public_html/live/generated/state/rss-items.txt Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/generated/state/rss-items.txt 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -18637,77 +18637,91 @@
 "
 " &lt;div id=&quot;version_1_54_0.news&quot;&gt;
 " &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;News&lt;/span&gt;&lt;/h3&gt;
-" &lt;p&gt;
-" Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
-" is i486. The 80386 target was not properly supported by &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/smart_ptr/&quot;&gt;Boost.SmartPtr&lt;/a&gt;
-" and &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/atomic/&quot;&gt;Boost.Atomic&lt;/a&gt; (as well as the libraries
-" that used them internally) even before this release. Some Boost libraries may
-" have higher requirements on the minimum target CPU (like &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/log/&quot;&gt;Boost.Log&lt;/a&gt;
-" for example), see the respective library documentation for details.
-" &lt;/p&gt;
-" &lt;p&gt;
-" Also by default, when building Boost for x86 32-bit targets it will compile
-" for i686 (Pentium Pro) and later CPUs. This can be changed by specifying the
-" &lt;tt&gt;instruction-set&lt;/tt&gt; property in &lt;tt&gt;b2&lt;/tt&gt; or &lt;tt&gt;bjam&lt;/tt&gt;
-" command line, for example:
-" &lt;/p&gt;
+" &lt;div id=&quot;version_1_54_0.news.supported_cpus&quot;&gt;
+" &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Supported CPUs&lt;/span&gt;&lt;/h3&gt;
+" &lt;p&gt;
+" Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
+" is i486. The 80386 target was not properly supported by &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/smart_ptr/&quot;&gt;Boost.SmartPtr&lt;/a&gt;
+" and &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/atomic/&quot;&gt;Boost.Atomic&lt;/a&gt; (as well as the libraries
+" that used them internally) even before this release. Some Boost libraries
+" may have higher requirements on the minimum target CPU (like &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/log/&quot;&gt;Boost.Log&lt;/a&gt;
+" for example), see the respective library documentation for details.
+" &lt;/p&gt;
+" &lt;p&gt;
+" Also by default, when building Boost for x86 32-bit targets it will compile
+" for i686 (Pentium Pro) and later CPUs. This can be changed by specifying
+" the &lt;tt&gt;instruction-set&lt;/tt&gt; property in &lt;tt&gt;b2&lt;/tt&gt;
+" or &lt;tt&gt;bjam&lt;/tt&gt; command line, for example:
+" &lt;/p&gt;
 "&lt;pre&gt;b2 variant=release architecture=x86 instruction-set=i486 stage
 "&lt;/pre&gt;
-" &lt;p&gt;
-" Possible values for the &lt;tt&gt;instruction-set&lt;/tt&gt; are:
-" &lt;/p&gt;
-" &lt;ul&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" Target for the host CPU: &lt;tt&gt;native&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" Generic x86 CPUs: &lt;tt&gt;i486&lt;/tt&gt;, &lt;tt&gt;i586&lt;/tt&gt;, &lt;tt&gt;i686&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" Intel CPUs: &lt;tt&gt;pentium&lt;/tt&gt;, &lt;tt&gt;pentium-mmx&lt;/tt&gt;,
-" &lt;tt&gt;pentiumpro&lt;/tt&gt;, &lt;tt&gt;pentium2&lt;/tt&gt;, &lt;tt&gt;pentium3&lt;/tt&gt;,
-" &lt;tt&gt;pentium3m&lt;/tt&gt;, &lt;tt&gt;pentium-m&lt;/tt&gt;, &lt;tt&gt;pentium4&lt;/tt&gt;,
-" &lt;tt&gt;pentium4m&lt;/tt&gt;, &lt;tt&gt;prescott&lt;/tt&gt;, &lt;tt&gt;nocona&lt;/tt&gt;,
-" &lt;tt&gt;core2&lt;/tt&gt;, &lt;tt&gt;corei7&lt;/tt&gt;, &lt;tt&gt;corei7-avx&lt;/tt&gt;,
-" &lt;tt&gt;core-avx-i&lt;/tt&gt;, &lt;tt&gt;conroe&lt;/tt&gt;, &lt;tt&gt;conroe-xe&lt;/tt&gt;,
-" &lt;tt&gt;conroe-l&lt;/tt&gt;, &lt;tt&gt;allendale&lt;/tt&gt;, &lt;tt&gt;merom&lt;/tt&gt;,
-" &lt;tt&gt;merom-xe&lt;/tt&gt;, &lt;tt&gt;kentsfield&lt;/tt&gt;, &lt;tt&gt;kentsfield-xe&lt;/tt&gt;,
-" &lt;tt&gt;penryn&lt;/tt&gt;, &lt;tt&gt;wolfdale&lt;/tt&gt;, &lt;tt&gt;yorksfield&lt;/tt&gt;,
-" &lt;tt&gt;nehalem&lt;/tt&gt;, &lt;tt&gt;sandy-bridge&lt;/tt&gt;, &lt;tt&gt;ivy-bridge&lt;/tt&gt;,
-" &lt;tt&gt;haswell&lt;/tt&gt;, &lt;tt&gt;atom&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" AMD CPUs: &lt;tt&gt;k6&lt;/tt&gt;, &lt;tt&gt;k6-2&lt;/tt&gt;, &lt;tt&gt;k6-3&lt;/tt&gt;,
-" &lt;tt&gt;athlon&lt;/tt&gt;, &lt;tt&gt;athlon-tbird&lt;/tt&gt;, &lt;tt&gt;athlon-4&lt;/tt&gt;,
-" &lt;tt&gt;athlon-xp&lt;/tt&gt;, &lt;tt&gt;athlon-mp&lt;/tt&gt;, &lt;tt&gt;k8&lt;/tt&gt;,
-" &lt;tt&gt;opteron&lt;/tt&gt;, &lt;tt&gt;athlon64&lt;/tt&gt;, &lt;tt&gt;athlon-fx&lt;/tt&gt;,
-" &lt;tt&gt;k8-sse3&lt;/tt&gt;, &lt;tt&gt;opteron-sse3&lt;/tt&gt;, &lt;tt&gt;athlon64-sse3&lt;/tt&gt;,
-" &lt;tt&gt;amdfam10&lt;/tt&gt;, &lt;tt&gt;barcelona&lt;/tt&gt;, &lt;tt&gt;bdver1&lt;/tt&gt;,
-" &lt;tt&gt;bdver2&lt;/tt&gt;, &lt;tt&gt;bdver3&lt;/tt&gt;, &lt;tt&gt;btver1&lt;/tt&gt;,
-" &lt;tt&gt;btver2&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" VIA CPUs: &lt;tt&gt;c3&lt;/tt&gt;, &lt;tt&gt;c3-2&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;li&gt;
-" &lt;div&gt;
-" IDT CPUs: &lt;tt&gt;winchip-c6&lt;/tt&gt;, &lt;tt&gt;winchip2&lt;/tt&gt;
-" &lt;/div&gt;
-" &lt;/li&gt;
-" &lt;/ul&gt;
-" &lt;p&gt;
-" Note that not all these values may be supported by a particular compiler.
-" &lt;/p&gt;
+" &lt;p&gt;
+" Possible values for the &lt;tt&gt;instruction-set&lt;/tt&gt; are:
+" &lt;/p&gt;
+" &lt;ul&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Target for the host CPU: &lt;tt&gt;native&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Generic x86 CPUs: &lt;tt&gt;i486&lt;/tt&gt;, &lt;tt&gt;i586&lt;/tt&gt;,
+" &lt;tt&gt;i686&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Intel CPUs: &lt;tt&gt;pentium&lt;/tt&gt;, &lt;tt&gt;pentium-mmx&lt;/tt&gt;,
+" &lt;tt&gt;pentiumpro&lt;/tt&gt;, &lt;tt&gt;pentium2&lt;/tt&gt;, &lt;tt&gt;pentium3&lt;/tt&gt;,
+" &lt;tt&gt;pentium3m&lt;/tt&gt;, &lt;tt&gt;pentium-m&lt;/tt&gt;, &lt;tt&gt;pentium4&lt;/tt&gt;,
+" &lt;tt&gt;pentium4m&lt;/tt&gt;, &lt;tt&gt;prescott&lt;/tt&gt;, &lt;tt&gt;nocona&lt;/tt&gt;,
+" &lt;tt&gt;core2&lt;/tt&gt;, &lt;tt&gt;corei7&lt;/tt&gt;, &lt;tt&gt;corei7-avx&lt;/tt&gt;,
+" &lt;tt&gt;core-avx-i&lt;/tt&gt;, &lt;tt&gt;conroe&lt;/tt&gt;, &lt;tt&gt;conroe-xe&lt;/tt&gt;,
+" &lt;tt&gt;conroe-l&lt;/tt&gt;, &lt;tt&gt;allendale&lt;/tt&gt;, &lt;tt&gt;merom&lt;/tt&gt;,
+" &lt;tt&gt;merom-xe&lt;/tt&gt;, &lt;tt&gt;kentsfield&lt;/tt&gt;, &lt;tt&gt;kentsfield-xe&lt;/tt&gt;,
+" &lt;tt&gt;penryn&lt;/tt&gt;, &lt;tt&gt;wolfdale&lt;/tt&gt;, &lt;tt&gt;yorksfield&lt;/tt&gt;,
+" &lt;tt&gt;nehalem&lt;/tt&gt;, &lt;tt&gt;sandy-bridge&lt;/tt&gt;, &lt;tt&gt;ivy-bridge&lt;/tt&gt;,
+" &lt;tt&gt;haswell&lt;/tt&gt;, &lt;tt&gt;atom&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" AMD CPUs: &lt;tt&gt;k6&lt;/tt&gt;, &lt;tt&gt;k6-2&lt;/tt&gt;, &lt;tt&gt;k6-3&lt;/tt&gt;,
+" &lt;tt&gt;athlon&lt;/tt&gt;, &lt;tt&gt;athlon-tbird&lt;/tt&gt;, &lt;tt&gt;athlon-4&lt;/tt&gt;,
+" &lt;tt&gt;athlon-xp&lt;/tt&gt;, &lt;tt&gt;athlon-mp&lt;/tt&gt;, &lt;tt&gt;k8&lt;/tt&gt;,
+" &lt;tt&gt;opteron&lt;/tt&gt;, &lt;tt&gt;athlon64&lt;/tt&gt;, &lt;tt&gt;athlon-fx&lt;/tt&gt;,
+" &lt;tt&gt;k8-sse3&lt;/tt&gt;, &lt;tt&gt;opteron-sse3&lt;/tt&gt;, &lt;tt&gt;athlon64-sse3&lt;/tt&gt;,
+" &lt;tt&gt;amdfam10&lt;/tt&gt;, &lt;tt&gt;barcelona&lt;/tt&gt;, &lt;tt&gt;bdver1&lt;/tt&gt;,
+" &lt;tt&gt;bdver2&lt;/tt&gt;, &lt;tt&gt;bdver3&lt;/tt&gt;, &lt;tt&gt;btver1&lt;/tt&gt;,
+" &lt;tt&gt;btver2&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" VIA CPUs: &lt;tt&gt;c3&lt;/tt&gt;, &lt;tt&gt;c3-2&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" IDT CPUs: &lt;tt&gt;winchip-c6&lt;/tt&gt;, &lt;tt&gt;winchip2&lt;/tt&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;/ul&gt;
+" &lt;p&gt;
+" Note that not all these values may be supported by a particular compiler.
+" &lt;/p&gt;
+" &lt;/div&gt;
+" &lt;div id=&quot;version_1_54_0.news.signals_deprecated&quot;&gt;
+" &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;Signals deprecated&lt;/span&gt;&lt;/h3&gt;
+" &lt;p&gt;
+" Boost.Signals is no longer being actively maintained, so it has been deprecated.
+" Do not use Boost.Signals for new development (use &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals2/&quot;&gt;Boost.Signals2&lt;/a&gt;
+" instead). If you have existing Boost.Signals-based code, it will continue
+" to work, but consider moving to Boost.Signals2. There is &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/doc/html/signals2/api_changes.html#signals2.porting&quot;&gt;a
+" porting guide&lt;/a&gt; in the Signals2 documentation.
+" &lt;/p&gt;
+" &lt;/div&gt;
 " &lt;/div&gt;
 " &lt;div id=&quot;version_1_54_0.new_libraries&quot;&gt;
 " &lt;h3&gt;&lt;span class=&quot;link&quot;&gt;New Libraries&lt;/span&gt;&lt;/h3&gt;
@@ -19620,6 +19634,19 @@
 " &lt;/li&gt;
 " &lt;li&gt;
 " &lt;div&gt;
+" &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals/&quot;&gt;Signals&lt;/a&gt;:&lt;/span&gt;
+" &lt;ul&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" No longer actively maintained, so it is deprecated. Use &lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/signals2&quot;&gt;Signals2&lt;/a&gt;
+" for new development.
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;/ul&gt;
+" &lt;/div&gt;
+" &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
 " &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;http://www.boost.org/doc/libs/1_54_0_beta1/libs/thread/&quot;&gt;Thread&lt;/a&gt;:&lt;/span&gt;
 " &lt;ul&gt;
 " &lt;li&gt;
@@ -20201,7 +20228,7 @@
 " &lt;/div&gt;
 "</description></item>
 -last_modified
-.1370909390.07
+.1371193844.69
 -quickbook
 "feed/history/boost_1_54_0.qbk
 )

Modified: website/public_html/live/users/history/version_1_54_0.html
==============================================================================
--- website/public_html/live/users/history/version_1_54_0.html Fri Jun 14 02:58:44 2013 (r84774)
+++ website/public_html/live/users/history/version_1_54_0.html 2013-06-14 03:12:02 EDT (Fri, 14 Jun 2013) (r84775)
@@ -49,77 +49,91 @@
 
   <div id="version_1_54_0.news">
     <h3><span class="link">News</span></h3>
- <p>
- Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
- is i486. The 80386 target was not properly supported by Boost.SmartPtr
- and Boost.Atomic (as well as the libraries
- that used them internally) even before this release. Some Boost libraries may
- have higher requirements on the minimum target CPU (like Boost.Log
- for example), see the respective library documentation for details.
- </p>
- <p>
- Also by default, when building Boost for x86 32-bit targets it will compile
- for i686 (Pentium Pro) and later CPUs. This can be changed by specifying the
- <tt>instruction-set</tt> property in <tt>b2</tt> or <tt>bjam</tt>
- command line, for example:
- </p>
+ <div id="version_1_54_0.news.supported_cpus">
+ <h3><span class="link">Supported CPUs</span></h3>
+ <p>
+ Boost no longer supports the 80386 target CPU, the minimum x86 32-bit target
+ is i486. The 80386 target was not properly supported by Boost.SmartPtr
+ and Boost.Atomic (as well as the libraries
+ that used them internally) even before this release. Some Boost libraries
+ may have higher requirements on the minimum target CPU (like Boost.Log
+ for example), see the respective library documentation for details.
+ </p>
+ <p>
+ Also by default, when building Boost for x86 32-bit targets it will compile
+ for i686 (Pentium Pro) and later CPUs. This can be changed by specifying
+ the <tt>instruction-set</tt> property in <tt>b2</tt>
+ or <tt>bjam</tt> command line, for example:
+ </p>
 <pre>b2 variant=release architecture=x86 instruction-set=i486 stage
 </pre>
- <p>
- Possible values for the <tt>instruction-set</tt> are:
- </p>
- <ul>
- <li>
- <div>
- Target for the host CPU: <tt>native</tt>
- </div>
- </li>
- <li>
- <div>
- Generic x86 CPUs: <tt>i486</tt>, <tt>i586</tt>, <tt>i686</tt>
- </div>
- </li>
- <li>
- <div>
- Intel CPUs: <tt>pentium</tt>, <tt>pentium-mmx</tt>,
- <tt>pentiumpro</tt>, <tt>pentium2</tt>, <tt>pentium3</tt>,
- <tt>pentium3m</tt>, <tt>pentium-m</tt>, <tt>pentium4</tt>,
- <tt>pentium4m</tt>, <tt>prescott</tt>, <tt>nocona</tt>,
- <tt>core2</tt>, <tt>corei7</tt>, <tt>corei7-avx</tt>,
- <tt>core-avx-i</tt>, <tt>conroe</tt>, <tt>conroe-xe</tt>,
- <tt>conroe-l</tt>, <tt>allendale</tt>, <tt>merom</tt>,
- <tt>merom-xe</tt>, <tt>kentsfield</tt>, <tt>kentsfield-xe</tt>,
- <tt>penryn</tt>, <tt>wolfdale</tt>, <tt>yorksfield</tt>,
- <tt>nehalem</tt>, <tt>sandy-bridge</tt>, <tt>ivy-bridge</tt>,
- <tt>haswell</tt>, <tt>atom</tt>
- </div>
- </li>
- <li>
- <div>
- AMD CPUs: <tt>k6</tt>, <tt>k6-2</tt>, <tt>k6-3</tt>,
- <tt>athlon</tt>, <tt>athlon-tbird</tt>, <tt>athlon-4</tt>,
- <tt>athlon-xp</tt>, <tt>athlon-mp</tt>, <tt>k8</tt>,
- <tt>opteron</tt>, <tt>athlon64</tt>, <tt>athlon-fx</tt>,
- <tt>k8-sse3</tt>, <tt>opteron-sse3</tt>, <tt>athlon64-sse3</tt>,
- <tt>amdfam10</tt>, <tt>barcelona</tt>, <tt>bdver1</tt>,
- <tt>bdver2</tt>, <tt>bdver3</tt>, <tt>btver1</tt>,
- <tt>btver2</tt>
- </div>
- </li>
- <li>
- <div>
- VIA CPUs: <tt>c3</tt>, <tt>c3-2</tt>
- </div>
- </li>
- <li>
- <div>
- IDT CPUs: <tt>winchip-c6</tt>, <tt>winchip2</tt>
- </div>
- </li>
- </ul>
- <p>
- Note that not all these values may be supported by a particular compiler.
- </p>
+ <p>
+ Possible values for the <tt>instruction-set</tt> are:
+ </p>
+ <ul>
+ <li>
+ <div>
+ Target for the host CPU: <tt>native</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ Generic x86 CPUs: <tt>i486</tt>, <tt>i586</tt>,
+ <tt>i686</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ Intel CPUs: <tt>pentium</tt>, <tt>pentium-mmx</tt>,
+ <tt>pentiumpro</tt>, <tt>pentium2</tt>, <tt>pentium3</tt>,
+ <tt>pentium3m</tt>, <tt>pentium-m</tt>, <tt>pentium4</tt>,
+ <tt>pentium4m</tt>, <tt>prescott</tt>, <tt>nocona</tt>,
+ <tt>core2</tt>, <tt>corei7</tt>, <tt>corei7-avx</tt>,
+ <tt>core-avx-i</tt>, <tt>conroe</tt>, <tt>conroe-xe</tt>,
+ <tt>conroe-l</tt>, <tt>allendale</tt>, <tt>merom</tt>,
+ <tt>merom-xe</tt>, <tt>kentsfield</tt>, <tt>kentsfield-xe</tt>,
+ <tt>penryn</tt>, <tt>wolfdale</tt>, <tt>yorksfield</tt>,
+ <tt>nehalem</tt>, <tt>sandy-bridge</tt>, <tt>ivy-bridge</tt>,
+ <tt>haswell</tt>, <tt>atom</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ AMD CPUs: <tt>k6</tt>, <tt>k6-2</tt>, <tt>k6-3</tt>,
+ <tt>athlon</tt>, <tt>athlon-tbird</tt>, <tt>athlon-4</tt>,
+ <tt>athlon-xp</tt>, <tt>athlon-mp</tt>, <tt>k8</tt>,
+ <tt>opteron</tt>, <tt>athlon64</tt>, <tt>athlon-fx</tt>,
+ <tt>k8-sse3</tt>, <tt>opteron-sse3</tt>, <tt>athlon64-sse3</tt>,
+ <tt>amdfam10</tt>, <tt>barcelona</tt>, <tt>bdver1</tt>,
+ <tt>bdver2</tt>, <tt>bdver3</tt>, <tt>btver1</tt>,
+ <tt>btver2</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ VIA CPUs: <tt>c3</tt>, <tt>c3-2</tt>
+ </div>
+ </li>
+ <li>
+ <div>
+ IDT CPUs: <tt>winchip-c6</tt>, <tt>winchip2</tt>
+ </div>
+ </li>
+ </ul>
+ <p>
+ Note that not all these values may be supported by a particular compiler.
+ </p>
+ </div>
+ <div id="version_1_54_0.news.signals_deprecated">
+ <h3><span class="link">Signals deprecated</span></h3>
+ <p>
+ Boost.Signals is no longer being actively maintained, so it has been deprecated.
+ Do not use Boost.Signals for new development (use Boost.Signals2
+ instead). If you have existing Boost.Signals-based code, it will continue
+ to work, but consider moving to Boost.Signals2. There is <a href="/doc/libs/1_54_0_beta1/doc/html/signals2/api_changes.html#signals2.porting">a
+ porting guide</a> in the Signals2 documentation.
+ </p>
+ </div>
   </div>
   <div id="version_1_54_0.new_libraries">
     <h3><span class="link">New Libraries</span></h3>
@@ -1032,6 +1046,19 @@
       </li>
       <li>
         <div>
+ <span class="library">Signals:</span>
+ <ul>
+ <li>
+ <div>
+ No longer actively maintained, so it is deprecated. Use Signals2
+ for new development.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
           <span class="library">Thread:</span>
           <ul>
             <li>


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