Skip to content

Commit c6535a0

Browse files
committed
v1.8.1 release
1 parent 673ec55 commit c6535a0

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
![catch logo](catch-logo-small.png)
22

3-
*v1.8.0*
3+
*v1.8.1*
44

55
Build status (on Travis CI) [![Build Status](https://travis-ci.org/philsquared/Catch.svg?branch=master)](https://travis-ci.org/philsquared/Catch)
66

7-
<a href="https://github.com/philsquared/Catch/releases/download/v1.8.0/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
7+
<a href="https://github.com/philsquared/Catch/releases/download/v1.8.1/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
88

99
## What's the Catch?
1010

include/internal/catch_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace Catch {
3737
return os;
3838
}
3939

40-
Version libraryVersion( 1, 8, 0, "", 0 );
40+
Version libraryVersion( 1, 8, 1, "", 0 );
4141

4242
}
4343

single_include/catch.hpp

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Catch v1.8.0
3-
* Generated: 2017-02-28 14:16:45.289179
2+
* Catch v1.8.1
3+
* Generated: 2017-03-01 16:04:19.016511
44
* ----------------------------------------------------------
55
* This file has been merged from multiple headers. Please don't edit it directly
66
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@@ -141,6 +141,10 @@
141141
# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
142142
# endif
143143

144+
// Required for some versions of Cygwin to declare gettimeofday
145+
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
146+
# define _BSD_SOURCE
147+
144148
#endif // __CYGWIN__
145149

146150
////////////////////////////////////////////////////////////////////////////////
@@ -8134,7 +8138,7 @@ namespace Catch {
81348138
return os;
81358139
}
81368140

8137-
Version libraryVersion( 1, 8, 0, "", 0 );
8141+
Version libraryVersion( 1, 8, 1, "", 0 );
81388142

81398143
}
81408144

@@ -8308,13 +8312,8 @@ namespace Catch
83088312

83098313
#else
83108314

8311-
// Required for some versions of Cygwin to declare gettimeofday
8312-
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
8313-
# ifdef __CYGWIN__
8314-
# define _BSD_SOURCE
8315-
# endif
8316-
83178315
#include <sys/time.h>
8316+
83188317
#endif
83198318

83208319
namespace Catch {

0 commit comments

Comments
 (0)