mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 05:16:10 +01:00
Fixed script for new readme
- updated README with new version - fixed casing error for -e opt description
This commit is contained in:
parent
f3592f2102
commit
7d5f2715ce
@ -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?
|
||||
|
||||
|
@ -71,7 +71,7 @@ namespace Catch {
|
||||
.longOpt( "break" );
|
||||
|
||||
cli.bind( &ConfigData::noThrow )
|
||||
.describe( "Skip exception tests" )
|
||||
.describe( "skip exception tests" )
|
||||
.shortOpt( "e")
|
||||
.longOpt( "nothrow" );
|
||||
|
||||
|
@ -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" )
|
||||
|
||||
|
@ -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" );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user