Skip to content

Commit d08cee2

Browse files
committed
v1.7.2 build
1 parent 873ef27 commit d08cee2

File tree

4 files changed

+149
-89
lines changed

4 files changed

+149
-89
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.7.1*
3+
*v1.7.2*
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.7.1/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.7.2/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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# 1.7.2
2+
3+
### Fixes and minor improvements
4+
Xml:
5+
6+
(technically the first two are breaking changes but are also fixes and arguably break few if any people)
7+
* C-escape control characters instead of XML encoding them (which requires XML 1.1)
8+
* Revert XML output to XML 1.0
9+
* Can provide stylesheet references by extending the XML reporter
10+
* Added description and tags attribites to XML Reporter
11+
* Tags are closed and the stream flushed more eagerly to avoid stdout interpolation
12+
13+
14+
Other:
15+
* `REQUIRE_THROWS_AS` now catches exception by `const&` and reports expected type
16+
* In `SECTION`s the file/ line is now of the `SECTION`. not the `TEST_CASE`
17+
* Added std:: qualification to some functions from C stdlib
18+
* Removed use of RTTI (`dynamic_cast`) that had crept back in
19+
* Silenced a few more warnings in different circumstances
20+
* Travis improvements
21+
122
# 1.7.1
223

324
### Fixes:

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, 7, 1, "", 0 );
40+
Version libraryVersion( 1, 7, 2, "", 0 );
4141

4242
}
4343

0 commit comments

Comments
 (0)