Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55223 - in website/public_html/beta/feed: . history
From: daniel_james_at_[hidden]
Date: 2009-07-30 14:43:57


Author: danieljames
Date: 2009-07-28 03:25:27 EDT (Tue, 28 Jul 2009)
New Revision: 55223
URL: http://svn.boost.org/trac/boost/changeset/55223

Log:
Add Wave release notes.
Text files modified:
   website/public_html/beta/feed/history.rss | 49 ++++++++++++++++++++++++++++++++++++---
   website/public_html/beta/feed/history/boost_1_40_0.qbk | 24 ++++++++++++++++++
   website/public_html/beta/feed/news.rss | 49 ++++++++++++++++++++++++++++++++++++---
   3 files changed, 113 insertions(+), 9 deletions(-)

Modified: website/public_html/beta/feed/history.rss
==============================================================================
--- website/public_html/beta/feed/history.rss (original)
+++ website/public_html/beta/feed/history.rss 2009-07-28 03:25:27 EDT (Tue, 28 Jul 2009)
@@ -6,9 +6,9 @@
     <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.40.0</title><pubDate>$Date: 2009/07/26 18:56:19 $</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
+ <item><title>Version 1.40.0</title><pubDate>$Date: 2009/07/28 07:24:58 $</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
       Build System improvements. Updated Libraries: Foreach, Function, Hash, Program.Options,
- Serialization, Unordered.
+ Serialization, Unordered, Wave.
     &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041><description>&lt;div class=&quot;description&quot;&gt;
   
   
@@ -95,8 +95,49 @@
           &lt;li&gt;
             Some minor tweaks for better compiler support (&lt;a href=&quot;
https://svn.boost.org/trac/boost/ticket/2908&quot;&gt;#2908&lt;/a&gt;,
             &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3096&quot;&gt;#3096&lt;/a&gt;,
- &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3082&quot;&gt;Ticket 3082&lt;/a&gt;).
- Disable incorrect Visual C++ warnings.
+ &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3082&quot;&gt;#3082&lt;/a&gt;).
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;/libs/wave/index.html&quot;&gt;Wave v2.0.2&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ Fixed several race condition inhibiting to use Wave in multi threaded
+ environments. Wave is now usable in multi threaded applications again.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fixed compilation problems caused by recent changes to the multi_pass
+ iterator from Spirit V2.1.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fixed Wave to compile with BOOST_FILESYSTEM_NO_DEPRECATED defined (i.e.
+ the library doesn't use the deprecated filesystem interface anymore).
+ &lt;/li&gt;
+ &lt;li&gt;
+ Switched to Re2C V0.13.5
+ &lt;/li&gt;
+ &lt;li&gt;
+ Specifying a custom token type now works as expected. The new lexer interface
+ introduced in V2.0 broke this part.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Removed old code related to pre Boost V1.31 (related to V1 of iterator
+ library), this breaks compatibility with Boost versions this old.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Incorporated the changes from latest version of the flex_string class
+ (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/2946&quot;&gt;#2946&lt;/a&gt;).
+ &lt;/li&gt;
+ &lt;li&gt;
+ Finally fixed all remaining examples. Everything seems to work fine now.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Added a new commandline option &lt;code&gt;&lt;span class=&quot;special&quot;&gt;--&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;macrocounts&lt;/span&gt;&lt;/code&gt;&lt;em&gt;`-c` to the Wave
+ driver application which lists all macro invocation counts to an optionally
+ specified file (default is `cout`). * Fixed `--list_includes`&lt;/em&gt;&lt;code&gt;&lt;span class=&quot;special&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;l&lt;/span&gt;&lt;/code&gt;
+ command line option of the wave driver tool to correctly indent the generated
+ list of included files.
           &lt;/li&gt;
         &lt;/ul&gt;
       &lt;/li&gt;

Modified: website/public_html/beta/feed/history/boost_1_40_0.qbk
==============================================================================
--- website/public_html/beta/feed/history/boost_1_40_0.qbk (original)
+++ website/public_html/beta/feed/history/boost_1_40_0.qbk 2009-07-28 03:25:27 EDT (Tue, 28 Jul 2009)
@@ -2,7 +2,7 @@
     [quickbook 1.4]
     [source-mode c++]
     [purpose Build System improvements.
- Updated Libraries: Foreach, Function, Hash, Program.Options, Serialization, Unordered.]
+ Updated Libraries: Foreach, Function, Hash, Program.Options, Serialization, Unordered, Wave.]
     [authors [Dawes, Beman]]
     [last-revision ]
 ]
@@ -70,6 +70,28 @@
     [@https://svn.boost.org/trac/boost/ticket/3096 #3096],
     [@https://svn.boost.org/trac/boost/ticket/3082 #3082]).
     
+* [phrase library..[@/libs/wave/index.html Wave v2.0.2]:]
+ * Fixed several race condition inhibiting to use Wave in multi threaded
+ environments. Wave is now usable in multi threaded applications again.
+ * Fixed compilation problems caused by recent changes to the multi_pass
+ iterator from Spirit V2.1.
+ * Fixed Wave to compile with BOOST_FILESYSTEM_NO_DEPRECATED defined (i.e.
+ the library doesn't use the deprecated filesystem interface anymore).
+ * Switched to Re2C V0.13.5
+ * Specifying a custom token type now works as expected. The new lexer
+ interface introduced in V2.0 broke this part.
+ * Removed old code related to pre Boost V1.31 (related to V1 of iterator
+ library), this breaks compatibility with Boost versions this old.
+ * Incorporated the changes from latest version of the flex_string class
+ ([@https://svn.boost.org/trac/boost/ticket/2946 #2946]).
+ * Finally fixed all remaining examples. Everything seems to work fine now.
+ * Added a new commandline option `--macrocounts`/`-c` to the Wave driver
+ application
+ which lists all macro invocation counts to an optionally specified file
+ (default is `cout`).
+ * Fixed `--list_includes`/`-l` command line option of the wave driver tool to
+ correctly indent the generated list of included files.
+
 [endsect]
 
 [section Build System]

Modified: website/public_html/beta/feed/news.rss
==============================================================================
--- website/public_html/beta/feed/news.rss (original)
+++ website/public_html/beta/feed/news.rss 2009-07-28 03:25:27 EDT (Tue, 28 Jul 2009)
@@ -6,9 +6,9 @@
     <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.40.0</title><pubDate>$Date: 2009/07/26 18:56:19 $</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
+ <item><title>Version 1.40.0</title><pubDate>$Date: 2009/07/28 07:24:58 $</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
       Build System improvements. Updated Libraries: Foreach, Function, Hash, Program.Options,
- Serialization, Unordered.
+ Serialization, Unordered, Wave.
     &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041><description>&lt;div class=&quot;description&quot;&gt;
   
   
@@ -95,8 +95,49 @@
           &lt;li&gt;
             Some minor tweaks for better compiler support (&lt;a href=&quot;
https://svn.boost.org/trac/boost/ticket/2908&quot;&gt;#2908&lt;/a&gt;,
             &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3096&quot;&gt;#3096&lt;/a&gt;,
- &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3082&quot;&gt;Ticket 3082&lt;/a&gt;).
- Disable incorrect Visual C++ warnings.
+ &lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/3082&quot;&gt;#3082&lt;/a&gt;).
+ &lt;/li&gt;
+ &lt;/ul&gt;
+ &lt;/li&gt;
+ &lt;li&gt;
+ &lt;span class=&quot;library&quot;&gt;&lt;a href=&quot;/libs/wave/index.html&quot;&gt;Wave v2.0.2&lt;/a&gt;:&lt;/span&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ Fixed several race condition inhibiting to use Wave in multi threaded
+ environments. Wave is now usable in multi threaded applications again.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fixed compilation problems caused by recent changes to the multi_pass
+ iterator from Spirit V2.1.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fixed Wave to compile with BOOST_FILESYSTEM_NO_DEPRECATED defined (i.e.
+ the library doesn't use the deprecated filesystem interface anymore).
+ &lt;/li&gt;
+ &lt;li&gt;
+ Switched to Re2C V0.13.5
+ &lt;/li&gt;
+ &lt;li&gt;
+ Specifying a custom token type now works as expected. The new lexer interface
+ introduced in V2.0 broke this part.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Removed old code related to pre Boost V1.31 (related to V1 of iterator
+ library), this breaks compatibility with Boost versions this old.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Incorporated the changes from latest version of the flex_string class
+ (&lt;a href=&quot;https://svn.boost.org/trac/boost/ticket/2946&quot;&gt;#2946&lt;/a&gt;).
+ &lt;/li&gt;
+ &lt;li&gt;
+ Finally fixed all remaining examples. Everything seems to work fine now.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Added a new commandline option &lt;code&gt;&lt;span class=&quot;special&quot;&gt;--&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;macrocounts&lt;/span&gt;&lt;/code&gt;&lt;em&gt;`-c` to the Wave
+ driver application which lists all macro invocation counts to an optionally
+ specified file (default is `cout`). * Fixed `--list_includes`&lt;/em&gt;&lt;code&gt;&lt;span class=&quot;special&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;identifier&quot;&gt;l&lt;/span&gt;&lt;/code&gt;
+ command line option of the wave driver tool to correctly indent the generated
+ list of included files.
           &lt;/li&gt;
         &lt;/ul&gt;
       &lt;/li&gt;


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