Skip to content

Commit

Permalink
v1.7.2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
philsquared committed Feb 13, 2017
1 parent 873ef27 commit d08cee2
Show file tree
Hide file tree
Showing 4 changed files with 149 additions and 89 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,10 +1,10 @@
![catch logo](catch-logo-small.png)

*v1.7.1*
*v1.7.2*

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.7.1/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.7.2/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>

## What's the Catch?

Expand Down
21 changes: 21 additions & 0 deletions docs/release-notes.md
@@ -1,3 +1,24 @@
# 1.7.2

### Fixes and minor improvements
Xml:

(technically the first two are breaking changes but are also fixes and arguably break few if any people)
* C-escape control characters instead of XML encoding them (which requires XML 1.1)
* Revert XML output to XML 1.0
* Can provide stylesheet references by extending the XML reporter
* Added description and tags attribites to XML Reporter
* Tags are closed and the stream flushed more eagerly to avoid stdout interpolation


Other:
* `REQUIRE_THROWS_AS` now catches exception by `const&` and reports expected type
* In `SECTION`s the file/ line is now of the `SECTION`. not the `TEST_CASE`
* Added std:: qualification to some functions from C stdlib
* Removed use of RTTI (`dynamic_cast`) that had crept back in
* Silenced a few more warnings in different circumstances
* Travis improvements

# 1.7.1

### Fixes:
Expand Down
2 changes: 1 addition & 1 deletion include/internal/catch_version.hpp
Expand Up @@ -37,7 +37,7 @@ namespace Catch {
return os;
}

Version libraryVersion( 1, 7, 1, "", 0 );
Version libraryVersion( 1, 7, 2, "", 0 );

}

Expand Down

0 comments on commit d08cee2

Please sign in to comment.