Skip to content

Commit 7c37501

Browse files
committed
v2.7.2
1 parent 4a1ca1a commit 7c37501

File tree

6 files changed

+147
-117
lines changed

6 files changed

+147
-117
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.7.1)
9+
project(Catch2 LANGUAGES CXX VERSION 2.7.2)
1010

1111
# Provide path for scripts
1212
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
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/ZFBZ5XbLA9F1gzKi)
8+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/rsEsNO9M0flb5NlQ)
99
[![Join the chat in Discord: https://discord.gg/4CWS9zD](https://img.shields.io/badge/Discord-Chat!-brightgreen.svg)](https://discord.gg/4CWS9zD)
1010

1111

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

1414
## Catch2 is released!
1515

docs/release-notes.md

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

33
# Release notes
44
**Contents**<br>
5+
[2.7.2](#272)<br>
56
[2.7.1](#271)<br>
67
[2.7.0](#270)<br>
78
[2.6.1](#261)<br>
@@ -22,6 +23,28 @@
2223
[Older versions](#older-versions)<br>
2324
[Even Older versions](#even-older-versions)<br>
2425

26+
27+
## 2.7.2
28+
29+
### Improvements
30+
* Added an approximate vector matcher (#1499)
31+
32+
### Fixes
33+
* Filters will no longer be shown if there were none
34+
* Fixed compilation error when using Homebrew GCC on OS X (#1588, #1589)
35+
* Fixed the console reporter not showing messages that start with a newline (#1455, #1470)
36+
* Modified JUnit reporter's output so that rng seed and filters are reported according to the JUnit schema (#1598)
37+
* Fixed some obscure warnings and static analysis passes
38+
39+
### Miscellaneous
40+
* Various improvements to `ParseAndAddCatchTests` (#1559, #1601)
41+
* When a target is parsed, it receives `ParseAndAddCatchTests_TESTS` property which summarizes found tests
42+
* Fixed problem with tests not being found if the `OptionalCatchTestLauncher` variables is used
43+
* Including the script will no longer forcefully modify `CMAKE_MINIMUM_REQUIRED_VERSION`
44+
* CMake object libraries are ignored when parsing to avoid needless warnings
45+
* `CatchAddTests` now adds test's tags to their CTest labels (#1600)
46+
* Added basic CPack support to our build
47+
2548
## 2.7.1
2649

2750
### Improvements

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 7
14-
#define CATCH_VERSION_PATCH 1
14+
#define CATCH_VERSION_PATCH 2
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, 7, 1, "", 0 );
40+
static Version version( 2, 7, 2, "", 0 );
4141
return version;
4242
}
4343

0 commit comments

Comments
 (0)