Skip to content

Commit 6ccd467

Browse files
committed
v2.5.0
1 parent 34dcd2c commit 6ccd467

File tree

6 files changed

+352
-43
lines changed

6 files changed

+352
-43
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.4.2)
9+
project(Catch2 LANGUAGES CXX VERSION 2.5.0)
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/rbkudthN4hBNJznk)
8+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/7lDqHmzKQxA2eaM0)
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.4.2/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.5.0/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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Release notes
44
**Contents**<br>
5+
[2.5.0](#250)<br>
56
[2.4.2](#242)<br>
67
[2.4.1](#241)<br>
78
[2.4.0](#240)<br>
@@ -17,6 +18,27 @@
1718
[Older versions](#older-versions)<br>
1819
[Even Older versions](#even-older-versions)<br>
1920

21+
## 2.5.0
22+
23+
### Improvements
24+
* Added support for templated tests via `TEMPLATE_TEST_CASE` (#1437)
25+
26+
27+
### Fixes
28+
* Fixed compilation of `PredicateMatcher<const char*>` by removing partial specialization of `MatcherMethod<T*>`
29+
* Listeners now implicitly support any verbosity (#1426)
30+
* Fixed compilation with Embarcadero builder by introducing `Catch::isnan` polyfill (#1438)
31+
* Fixed `CAPTURE` asserting for non-trivial captures (#1436, #1448)
32+
33+
34+
### Miscellaneous
35+
* We should now be providing first party Conan support via https://bintray.com/catchorg/Catch2 (#1443)
36+
* Added new section "deprecations and planned changes" to the documentation
37+
* It contains summary of what is deprecated and might change with next major version
38+
* From this release forward, the released headers should be pgp signed (#430)
39+
* KeyID `E29C 46F3 B8A7 5028 6079 3B7D ECC9 C20E 314B 2360`
40+
* or https://codingnest.com/files/horenmar-publickey.asc
41+
2042

2143
## 2.4.2
2244

include/catch.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#define TWOBLUECUBES_CATCH_HPP_INCLUDED
1111

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

0 commit comments

Comments
 (0)