Skip to content

Commit 7cbd0b5

Browse files
committed
v2.1.2
1 parent 2f15ccd commit 7cbd0b5

File tree

8 files changed

+112
-48
lines changed

8 files changed

+112
-48
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.1.1)
9+
project(Catch2 LANGUAGES CXX VERSION 2.1.2)
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/TpIcJaLaH4WrKlhS)
8+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/6O2wo5BOvVeUeKQe)
99

10-
<a href="https://github.com/catchorg/Catch2/releases/download/v2.1.1/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.1.2/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.1.1"
7+
version = "2.1.2"
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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
<a id="top"></a>
22

3+
# 2.1.2
4+
5+
## Fixes
6+
* Fixed compilation error with `-fno-rtti` (#1165)
7+
* Fixed NoAssertion warnings
8+
* `operator<<` is used before range-based stringification (#1172)
9+
* Fixed `-Wpedantic` warnings (extra semicolons and binary literals) (#1173)
10+
11+
12+
## Improvements
13+
* Added `CATCH_VERSION_{MAJOR,MINOR,PATCH}` macros (#1131)
14+
* Added `BrightYellow` colour for use in reporters (#979)
15+
* It is also used by ConsoleReporter for reconstructed expressions
16+
17+
## Other changes
18+
* Catch is now exported as a CMake package and linkable target (#1170)
19+
320
# 2.1.1
421

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

0 commit comments

Comments
 (0)