diff --git a/README.md b/README.md index b8bcd832..e39be2c9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![catch logo](catch-logo-small.png) -*v0.9 build 38 (integration branch)* +*v0.9 build 39 (integration branch)* ## What's the Catch? diff --git a/include/internal/catch_commandline.hpp b/include/internal/catch_commandline.hpp index 4b0e655b..16c23e4f 100644 --- a/include/internal/catch_commandline.hpp +++ b/include/internal/catch_commandline.hpp @@ -71,7 +71,7 @@ namespace Catch { .longOpt( "break" ); cli.bind( &ConfigData::noThrow ) - .describe( "Skip exception tests" ) + .describe( "skip exception tests" ) .shortOpt( "e") .longOpt( "nothrow" ); diff --git a/scripts/generateSingleHeader.py b/scripts/generateSingleHeader.py index e32f45e6..ba4c5cde 100644 --- a/scripts/generateSingleHeader.py +++ b/scripts/generateSingleHeader.py @@ -86,8 +86,8 @@ class Version: f.close() f = open( readmePath, 'w' ) for line in lines: - if line.startswith( "## CATCH" ): - f.write( '## CATCH v{0}.{1} build {2} ({3} branch)\n'.format( self.majorVersion, self.minorVersion, self.buildNumber, self.branchName ) ) + if line.startswith( "*v" ): + f.write( '*v{0}.{1} build {2} ({3} branch)*\n'.format( self.majorVersion, self.minorVersion, self.buildNumber, self.branchName ) ) else: f.write( line + "\n" ) diff --git a/single_include/catch.hpp b/single_include/catch.hpp index ee463915..f6a79016 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -1,6 +1,6 @@ /* * CATCH v0.9 build 39 (integration branch) - * Generated: 2013-06-07 19:06:43.206650 + * Generated: 2013-06-07 21:13:43.938994 * ---------------------------------------------------------- * This file has been merged from multiple headers. Please don't edit it directly * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. @@ -4246,7 +4246,7 @@ namespace Catch { .longOpt( "break" ); cli.bind( &ConfigData::noThrow ) - .describe( "Skip exception tests" ) + .describe( "skip exception tests" ) .shortOpt( "e") .longOpt( "nothrow" );