Skip to content

Commit d2a130f

Browse files
committed
v2.2.3
1 parent 7be8a41 commit d2a130f

File tree

8 files changed

+452
-177
lines changed

8 files changed

+452
-177
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(NOT DEFINED PROJECT_NAME)
66
set(NOT_SUBPROJECT ON)
77
endif()
88

9-
project(Catch2 LANGUAGES CXX VERSION 2.2.2)
9+
project(Catch2 LANGUAGES CXX VERSION 2.2.3)
1010

1111
include(GNUInstallDirs)
1212

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
[![Build Status](https://travis-ci.org/catchorg/Catch2.svg?branch=master)](https://travis-ci.org/catchorg/Catch2)
66
[![Build status](https://ci.appveyor.com/api/projects/status/github/catchorg/Catch2?svg=true)](https://ci.appveyor.com/project/catchorg/catch2)
77
[![codecov](https://codecov.io/gh/catchorg/Catch2/branch/master/graph/badge.svg)](https://codecov.io/gh/catchorg/Catch2)
8-
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/fRDMfYjUnrbOFwLn)
8+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/u7qF77qgv9YqOr55)
99

10-
<a href="https://github.com/catchorg/Catch2/releases/download/v2.2.2/catch.hpp">The latest version of the single header can be downloaded directly using this link</a>
10+
<a href="https://github.com/catchorg/Catch2/releases/download/v2.2.3/catch.hpp">The latest version of the single header can be downloaded directly using this link</a>
1111

1212
## Catch2 is released!
1313

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class CatchConan(ConanFile):
66
name = "Catch"
7-
version = "2.2.2"
7+
version = "2.2.3"
88
description = "A modern, C++-native, header-only, framework for unit-tests, TDD and BDD"
99
author = "philsquared"
1010
generators = "cmake"

docs/release-notes.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
<a id="top"></a>
22

3+
# 2.2.3
4+
5+
**To fix some of the bugs, some behavior had to change in potentially breaking manner.**
6+
**This means that even though this is a patch release, it might not be a drop-in replacement.**
7+
8+
## Fixes
9+
* Listeners are now called before reporter
10+
* This was always documented to be the case, now it actually works that way
11+
* Catch's commandline will no longer accept multiple reporters
12+
* This was done because multiple reporters never worked properly and broke things in non-obvious ways
13+
* **This has potential to be a breaking change**
14+
* MinGW is now detected as Windows platform w/o SEH support (#1257)
15+
* This means that Catch2 no longer tries to use POSIX signal handling when compiled with MinGW
16+
* Fixed potential UB in parsing tags using non-ASCII characters (#1266)
17+
* Note that Catch2 still supports only ASCII test names/tags/etc
18+
* `TEST_CASE_METHOD` can now be used on classnames containing commas (#1245)
19+
* You have to enclose the classname in extra set of parentheses
20+
* Fixed insufficient alt stack size for POSIX signal handling (#1225)
21+
* Fixed compilation error on Android due to missing `std::to_string` in C++11 mode (#1280)
22+
* Fixed the order of user-provided `FALLBACK_STRINGIFIER` in stringification machinery (#1024)
23+
* It was intended to be replacement for built-in fallbacks, but it was used _after_ them.
24+
* **This has potential to be a breaking change**
25+
* Fixed compilation error when a type has an `operator<<` with templated lhs (#1285, #1306)
26+
27+
## Improvements
28+
* Added a new, experimental, output capture (#1243)
29+
* This capture can also redirect output written via C apis, e.g. `printf`
30+
* To opt-in, define `CATCH_CONFIG_EXPERIMENTAL_REDIRECT` in the implementation file
31+
* Added a new fallback stringifier for classes derived from `std::exception`
32+
* Both `StringMaker` specialization and `operator<<` overload are given priority
33+
34+
## Miscellaneous
35+
* `contrib/` now contains dbg scripts that skip over Catch's internals (#904, #1283)
36+
* `gdbinit` for gdb `lldbinit` for lldb
37+
* `CatchAddTests.cmake` no longer strips whitespace from tests (#1265, #1281)
38+
* Online documentation now describes `--use-colour` option (#1263)
39+
40+
341
# 2.2.2
442

543
## Fixes

include/catch.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define CATCH_VERSION_MAJOR 2
1313
#define CATCH_VERSION_MINOR 2
14-
#define CATCH_VERSION_PATCH 2
14+
#define CATCH_VERSION_PATCH 3
1515

1616
#ifdef __clang__
1717
# pragma clang system_header

include/internal/catch_version.cpp

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

3939
Version const& libraryVersion() {
40-
static Version version( 2, 2, 2, "", 0 );
40+
static Version version( 2, 2, 3, "", 0 );
4141
return version;
4242
}
4343

0 commit comments

Comments
 (0)