You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ahref="https://github.com/philsquared/Catch/releases/download/v1.9.4/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
7
+
<ahref="https://github.com/philsquared/Catch/releases/download/v1.9.5/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
Copy file name to clipboardExpand all lines: docs/release-notes.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,19 @@
1
+
# 1.9.5
2
+
3
+
### Fixes
4
+
* Truthy expressions are now reconstructed properly, not as booleans (#914)
5
+
* Various warnings are no longer erroneously suppressed in test files (files that include `catch.hpp`, but do not define `CATCH_CONFIG_MAIN` or `CATCH_CONFIG_RUNNER`) (#871)
6
+
* Catch no longer fails to link when main is compiled as C++, but linked against Objective-C (#855)
7
+
* Fixed incorrect gcc version detection when deciding to use `__COUNTER__` (#928)
8
+
* Previously any GCC with minor version less than 3 would be incorrectly classified as not supporting `__COUNTER__`.
9
+
* Suppressed C4996 warning caused by upcoming updated to MSVC 2017, marking `std::uncaught_exception` as deprecated. (#927)
10
+
11
+
### Improvements
12
+
* CMake integration script now incorporates debug messages and registers tests in an improved way (#911)
0 commit comments