mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Direct download link now links to latest release version
Also edited releaseCommon script to update the link in readme as well.
This commit is contained in:
		| @@ -4,7 +4,7 @@ | |||||||
|  |  | ||||||
| Build status (on Travis CI) [](https://travis-ci.org/philsquared/Catch) | Build status (on Travis CI) [](https://travis-ci.org/philsquared/Catch) | ||||||
|  |  | ||||||
| <a href="https://raw.githubusercontent.com/philsquared/Catch/master/single_include/catch.hpp">The latest, single header, version can be downloaded directly using this link</a> | <a href="https://github.com/philsquared/Catch/releases/download/v1.6.1/catch.hpp">The latest, single header, version can be downloaded directly using this link</a> | ||||||
|  |  | ||||||
| ## What's the Catch? | ## What's the Catch? | ||||||
|  |  | ||||||
|   | |||||||
| @@ -75,6 +75,8 @@ class Version: | |||||||
|             f.write( line + "\n" ) |             f.write( line + "\n" ) | ||||||
|  |  | ||||||
|     def updateReadmeFile(self): |     def updateReadmeFile(self): | ||||||
|  |         versionParser = re.compile( r'\*v\d+\.\d+\.\d+\*' ) | ||||||
|  |         downloadParser = re.compile( r'<a href=\"https://github.com/philsquared/Catch/releases/download/v\d+\.\d+\.\d+/catch.hpp\">' ) | ||||||
|         f = open( readmePath, 'r' ) |         f = open( readmePath, 'r' ) | ||||||
|         lines = [] |         lines = [] | ||||||
|         for line in f: |         for line in f: | ||||||
| @@ -82,8 +84,7 @@ class Version: | |||||||
|         f.close() |         f.close() | ||||||
|         f = open( readmePath, 'w' ) |         f = open( readmePath, 'w' ) | ||||||
|         for line in lines: |         for line in lines: | ||||||
|             if line.startswith( "*v" ): |             line = versionParser.sub( '*v{0}*'.format(self.getVersionString()), line) | ||||||
|                 f.write( '*v{0}*\n'.format( self.getVersionString() ) ) |             line = downloadParser.sub( r'<a href="https://github.com/philsquared/Catch/releases/download/v{0}/catch.hpp">'.format(self.getVersionString()) , line) | ||||||
|             else: |             f.write( line + "\n" ) | ||||||
|                 f.write( line + "\n" ) |  | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský