Skip to content

Commit

Permalink
v1.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
philsquared committed Mar 1, 2017
1 parent 673ec55 commit c6535a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
![catch logo](catch-logo-small.png)

*v1.8.0*
*v1.8.1*

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

<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>
<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>

## What's the Catch?

Expand Down
2 changes: 1 addition & 1 deletion include/internal/catch_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace Catch {
return os;
}

Version libraryVersion( 1, 8, 0, "", 0 );
Version libraryVersion( 1, 8, 1, "", 0 );

}

Expand Down
17 changes: 8 additions & 9 deletions single_include/catch.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Catch v1.8.0
* Generated: 2017-02-28 14:16:45.289179
* Catch v1.8.1
* Generated: 2017-03-01 16:04:19.016511
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
Expand Down Expand Up @@ -141,6 +141,10 @@
# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
# endif

// Required for some versions of Cygwin to declare gettimeofday
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
# define _BSD_SOURCE

#endif // __CYGWIN__

////////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -8134,7 +8138,7 @@ namespace Catch {
return os;
}

Version libraryVersion( 1, 8, 0, "", 0 );
Version libraryVersion( 1, 8, 1, "", 0 );

}

Expand Down Expand Up @@ -8308,13 +8312,8 @@ namespace Catch

#else

// Required for some versions of Cygwin to declare gettimeofday
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
# ifdef __CYGWIN__
# define _BSD_SOURCE
# endif

#include <sys/time.h>

#endif

namespace Catch {
Expand Down

0 comments on commit c6535a0

Please sign in to comment.