Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84930 - trunk/tools/quickbook/src
From: dnljms_at_[hidden]
Date: 2013-07-01 15:33:13


Author: danieljames
Date: 2013-07-01 15:33:13 EDT (Mon, 01 Jul 2013)
New Revision: 84930
URL: http://svn.boost.org/trac/boost/changeset/84930

Log:
1.6.0 alpha

Text files modified:
   trunk/tools/quickbook/src/doc_info_actions.cpp | 19 ++++++++++++++-----
   trunk/tools/quickbook/src/quickbook.cpp | 2 +-
   2 files changed, 15 insertions(+), 6 deletions(-)

Modified: trunk/tools/quickbook/src/doc_info_actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/doc_info_actions.cpp Mon Jul 1 15:16:22 2013 (r84929)
+++ trunk/tools/quickbook/src/doc_info_actions.cpp 2013-07-01 15:33:13 EDT (Mon, 01 Jul 2013) (r84930)
@@ -208,12 +208,21 @@
 
         unsigned new_version = get_version(state, use_doc_info, qbk_version);
 
- if (new_version != qbk_version_n && new_version >= 106)
+ if (new_version != qbk_version_n)
         {
- detail::outwarn(state.current_file->path)
- << "Quickbook " << (new_version / 100) << "." << (new_version % 100)
- << " is still under development and is "
- "likely to change in the future." << std::endl;
+ if (new_version >= 107u)
+ {
+ detail::outwarn(state.current_file->path)
+ << "Quickbook " << (new_version / 100) << "." << (new_version % 100)
+ << " is still under development and is "
+ "likely to change in the future." << std::endl;
+ }
+ else if (new_version >= 106u)
+ {
+ detail::outwarn(state.current_file->path)
+ << "Quickbook " << (new_version / 100) << "." << (new_version % 100)
+ << " is in alpha." << std::endl;
+ }
         }
 
         if (new_version) {

Modified: trunk/tools/quickbook/src/quickbook.cpp
==============================================================================
--- trunk/tools/quickbook/src/quickbook.cpp Mon Jul 1 15:16:22 2013 (r84929)
+++ trunk/tools/quickbook/src/quickbook.cpp 2013-07-01 15:33:13 EDT (Mon, 01 Jul 2013) (r84930)
@@ -40,7 +40,7 @@
 #pragma warning(disable:4355)
 #endif
 
-#define QUICKBOOK_VERSION "Quickbook Version 1.5.9"
+#define QUICKBOOK_VERSION "Quickbook Version 1.6.0 alpha (dev)"
 
 namespace quickbook
 {


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