Skip to content

Commit c6990cd

Browse files
committed
v1.9.1 release
1 parent da8786b commit c6990cd

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build Status](https://travis-ci.org/philsquared/Catch.svg?branch=master)](https://travis-ci.org/philsquared/Catch)
55
[![Build status](https://ci.appveyor.com/api/projects/status/hrtk60hv6tw6fght/branch/master?svg=true)](https://ci.appveyor.com/project/philsquared/catch/branch/master)
66

7-
<a href="https://github.com/philsquared/Catch/releases/download/v1.9.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.9.1/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
88

99
## What's the Catch?
1010

docs/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.9.1
2+
3+
### Fixes
4+
* Unexpected exceptions are no longer ignored by default (#885, #887)
5+
6+
17
# 1.9.0
28

39

include/internal/catch_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace Catch {
3838
}
3939

4040
inline Version libraryVersion() {
41-
static Version version( 1, 9, 0, "", 0 );
41+
static Version version( 1, 9, 1, "", 0 );
4242
return version;
4343
}
4444

single_include/catch.hpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Catch v1.9.0
3-
* Generated: 2017-04-07 22:51:48.249456
2+
* Catch v1.9.1
3+
* Generated: 2017-04-09 21:21:06.285364
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.
@@ -6748,11 +6748,9 @@ namespace Catch {
67486748
catch(...) {
67496749
// Under CATCH_CONFIG_FAST_COMPILE, unexpected exceptions under REQUIRE assertions
67506750
// are reported without translation at the point of origin.
6751-
#ifdef CATCH_CONFIG_FAST_COMPILE
67526751
if (m_shouldReportUnexpected) {
67536752
makeUnexpectedResultBuilder().useActiveException();
67546753
}
6755-
#endif
67566754
}
67576755
m_testCaseTracker->close();
67586756
handleUnfinishedSections();
@@ -8234,7 +8232,7 @@ namespace Catch {
82348232
}
82358233

82368234
inline Version libraryVersion() {
8237-
static Version version( 1, 9, 0, "", 0 );
8235+
static Version version( 1, 9, 1, "", 0 );
82388236
return version;
82398237
}
82408238

0 commit comments

Comments
 (0)