Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84451 - in website/public_html/live: feed/history generated generated/state users/history
From: dnljms_at_[hidden]
Date: 2013-05-23 16:16:58


Author: danieljames
Date: 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
New Revision: 84451
URL: http://svn.boost.org/trac/boost/changeset/84451

Log:
Various release notes.
Text files modified:
   website/public_html/live/feed/history/boost_1_54_0.qbk | 24 +++++++++---------------
   website/public_html/live/generated/dev.rss | 33 ++++++++++++++++++++++++++++++++-
   website/public_html/live/generated/state/feed-pages.txt | 4 ++--
   website/public_html/live/generated/state/rss-items.txt | 35 +++++++++++++++++++++++++++++++++--
   website/public_html/live/users/history/version_1_54_0.html | 33 ++++++++++++++++++++++++++++++++-
   5 files changed, 108 insertions(+), 21 deletions(-)

Modified: website/public_html/live/feed/history/boost_1_54_0.qbk
==============================================================================
--- website/public_html/live/feed/history/boost_1_54_0.qbk (original)
+++ website/public_html/live/feed/history/boost_1_54_0.qbk 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
@@ -29,20 +29,6 @@
     1. Libraries are listed in alphabetical order.
     2. Besides the dedicated entry, the lib name should be added to the
        [purpose] section at the beginning of the page.
-
- Example new libraries message:
-
-* [phrase library..[@/libs/accumulators/ Accumulators]:] Framework for
- incremental calculation, and collection of statistical accumulators, from Eric Niebler.
-
- Example update message:
-
-* [phrase library..[@/libs/interprocess/ Interprocess]:]
- * Added anonymous shared memory for UNIX systems.
- * Fixed missing move semantics on managed memory classes.
- * Added copy_on_write and open_read_only options for shared memory
- and mapped file managed classes.
- * `shared_ptr` is movable and supports aliasing.
 ]
 
 [section New Libraries]
@@ -60,13 +46,21 @@
 
 * [phrase library..[@/libs/algorithm/ Algorithm]:]
   * The return types for copy_while and copy_until have been changed. This is an interface change. If you were using the return values from these functions, then you will have to modify your code. Instead of just returning the modified `OutputIterator`, these functions now return a `std::pair<InputIterator, OutputIterator>`. If this change affects your code, the simplest change is to add a `.second` to the end of the call, which will get you the same behavior that you had before.
+ * Added C++14 versions of 'is_permutation', 'equal' and 'mismatch'.
+
+* [phrase library..[@/libs/circular_buffer Circular Buffer]:]
+ * Fixed warnings ([ticket 8032]).
 
 * [phrase library..[@/libs/context/ Context]:]
   * Support for SPARC architecture added.
 
 * [phrase library..[@/libs/coroutine/ Coroutine]:]
   * Support for segmented stacks (stack grows on demand) added.
- * fixes for #7805, #7899, #7972, #8023, #8024, #8101
+ * Fixes for [ticket 7805], [ticket 7899], [ticket 7972], [ticket 8023],
+ [ticket 8024], [ticket 8101]
+
+* [phrase library..[@/libs/utility/ Utility]:]
+ * Fix `basic_string_ref::find` ([ticket 8067]).
 
 [/
 

Modified: website/public_html/live/generated/dev.rss
==============================================================================
--- website/public_html/live/generated/dev.rss (original)
+++ website/public_html/live/generated/dev.rss 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
@@ -54,6 +54,23 @@
                 which will get you the same behavior that you had before.
               &lt;/div&gt;
             &lt;/li&gt;
+ &lt;li&gt;
+ &lt;div&gt;
+ Added C++14 versions of 'is_permutation', 'equal' and 'mismatch'.
+ &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/libs/circular_buffer&quot;&gt;Circular Buffer&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ &lt;div&gt;
+ Fixed warnings (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8032&quot;&gt;#8032&lt;/a&gt;).
+ &lt;/div&gt;
+ &lt;/li&gt;
           &lt;/ul&gt;
         &lt;/div&gt;
       &lt;/li&gt;
@@ -80,7 +97,21 @@
             &lt;/li&gt;
             &lt;li&gt;
               &lt;div&gt;
- fixes for #7805, #7899, #7972, #8023, #8024, #8101
+ Fixes for &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7805&quot;&gt;#7805&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7899&quot;&gt;#7899&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7972&quot;&gt;#7972&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8023&quot;&gt;#8023&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8024&quot;&gt;#8024&lt;/a&gt;,
+ &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8101&quot;&gt;#8101&lt;/a&gt;
+ &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/libs/utility/&quot;&gt;Utility&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ &lt;div&gt;
+ Fix &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;basic_string_ref&lt;/span&gt;&lt;span class=&quot;special&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;find&lt;/span&gt;&lt;/code&gt;
+ (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8067&quot;&gt;#8067&lt;/a&gt;).
               &lt;/div&gt;
             &lt;/li&gt;
           &lt;/ul&gt;

Modified: website/public_html/live/generated/state/feed-pages.txt
==============================================================================
--- website/public_html/live/generated/state/feed-pages.txt (original)
+++ website/public_html/live/generated/state/feed-pages.txt 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
@@ -2004,7 +2004,7 @@
 -id
 "version_1_54_0
 -last_modified
-.1369257173.67
+.1369340176.3
 -location
 "users/history/version_1_54_0.html
 -notice
@@ -2017,7 +2017,7 @@
 " New Libraries: Updated Libraries:
 "
 -qbk_hash
-"51d7f7364de364ca599524de3f862c5ea4d3bc3a618710a7176e0086421d6642
+"c9a46ec23794f609d5a12a3d22695bd0ff15c630f5bba87f7b0eacdfdb405c8e
 -release_status
 "dev
 -title

Modified: website/public_html/live/generated/state/rss-items.txt
==============================================================================
--- website/public_html/live/generated/state/rss-items.txt (original)
+++ website/public_html/live/generated/state/rss-items.txt 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
@@ -18678,6 +18678,23 @@
 " which will get you the same behavior that you had before.
 " &lt;/div&gt;
 " &lt;/li&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Added C++14 versions of 'is_permutation', 'equal' and 'mismatch'.
+" &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/libs/circular_buffer&quot;&gt;Circular Buffer&lt;/a&gt;:&lt;/span&gt;
+" &lt;ul&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Fixed warnings (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8032&quot;&gt;#8032&lt;/a&gt;).
+" &lt;/div&gt;
+" &lt;/li&gt;
 " &lt;/ul&gt;
 " &lt;/div&gt;
 " &lt;/li&gt;
@@ -18704,7 +18721,21 @@
 " &lt;/li&gt;
 " &lt;li&gt;
 " &lt;div&gt;
-" fixes for #7805, #7899, #7972, #8023, #8024, #8101
+" Fixes for &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7805&quot;&gt;#7805&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7899&quot;&gt;#7899&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/7972&quot;&gt;#7972&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8023&quot;&gt;#8023&lt;/a&gt;, &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8024&quot;&gt;#8024&lt;/a&gt;,
+" &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8101&quot;&gt;#8101&lt;/a&gt;
+" &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/libs/utility/&quot;&gt;Utility&lt;/a&gt;:&lt;/span&gt;
+" &lt;ul&gt;
+" &lt;li&gt;
+" &lt;div&gt;
+" Fix &lt;code&gt;&lt;span class=&quot;identifier&quot;&gt;basic_string_ref&lt;/span&gt;&lt;span class=&quot;special&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;find&lt;/span&gt;&lt;/code&gt;
+" (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/8067&quot;&gt;#8067&lt;/a&gt;).
 " &lt;/div&gt;
 " &lt;/li&gt;
 " &lt;/ul&gt;
@@ -18743,7 +18774,7 @@
 " &lt;/div&gt;
 "</description></item>
 -last_modified
-.1369257173.67
+.1369340176.3
 -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 (original)
+++ website/public_html/live/users/history/version_1_54_0.html 2013-05-23 16:16:56 EDT (Thu, 23 May 2013)
@@ -90,6 +90,23 @@
                 which will get you the same behavior that you had before.
               </div>
             </li>
+ <li>
+ <div>
+ Added C++14 versions of 'is_permutation', 'equal' and 'mismatch'.
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ <span class="library">Circular Buffer:</span>
+ <ul>
+ <li>
+ <div>
+ Fixed warnings (#8032).
+ </div>
+ </li>
           </ul>
         </div>
       </li>
@@ -116,7 +133,21 @@
             </li>
             <li>
               <div>
- fixes for #7805, #7899, #7972, #8023, #8024, #8101
+ Fixes for #7805, #7899, #7972, #8023, #8024,
+ #8101
+ </div>
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div>
+ <span class="library">Utility:</span>
+ <ul>
+ <li>
+ <div>
+ Fix <code><span class="identifier">basic_string_ref</span><span class="special">::</span><span class="identifier">find</span></code>
+ (#8067).
               </div>
             </li>
           </ul>


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