Skip to content

Commit 4e8d92b

Browse files
committed
v3.6.0
1 parent 8ce2426 commit 4e8d92b

File tree

7 files changed

+360
-86
lines changed

7 files changed

+360
-86
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
3333
endif()
3434

3535
project(Catch2
36-
VERSION 3.5.4 # CML version placeholder, don't delete
36+
VERSION 3.6.0 # CML version placeholder, don't delete
3737
LANGUAGES CXX
3838
# HOMEPAGE_URL is not supported until CMake version 3.12, which
3939
# we do not target yet.

docs/release-notes.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Release notes
44
**Contents**<br>
5+
[3.6.0](#360)<br>
56
[3.5.4](#354)<br>
67
[3.5.3](#353)<br>
78
[3.5.2](#352)<br>
@@ -62,6 +63,31 @@
6263
[Even Older versions](#even-older-versions)<br>
6364

6465

66+
## 3.6.0
67+
68+
### Fixes
69+
* Fixed Windows ARM64 build by fixing the preprocessor condition guarding use `_umul128` intrinsic.
70+
* Fixed Windows ARM64EC build by removing intrinsic pragma it does not understand. (#2858)
71+
* Why doesn't the x64-emulation build mode understand x64 pragmas? Don't ask me, ask the MSVC guys.
72+
* Fixed the JUnit reporter sometimes crashing when reporting a fatal error. (#1210, #2855)
73+
* The binary will still exit, but through the original error, rather than secondary error inside the reporter.
74+
* The underlying fix applies to all reporters, not just the JUnit one, but only JUnit was currently causing troubles.
75+
76+
### Improvements
77+
* Disable `-Wnon-virtual-dtor` in Decomposer and Matchers (#2854)
78+
* `precision` in floating point stringmakers defaults to `max_digits10`.
79+
* This means that floating point values will be printed with enough precision to disambiguate any two floats.
80+
* Column wrapping ignores ansi colour codes when calculating string width (#2833, #2849)
81+
* This makes the output much more readable when the provided messages contain colour codes.
82+
83+
### Miscellaneous
84+
* Conan support improvements
85+
* `compatibility_cppstr` is set to False. (#2860)
86+
* This means that Conan won't let you mix library and project with different C++ standard settings.
87+
* The implementation library CMake target name through Conan is properly set to `Catch2::Catch2` (#2861)
88+
* `SelfTest` target can be built through Bazel (#2857)
89+
90+
6591
## 3.5.4
6692

6793
### Fixes

0 commit comments

Comments
 (0)