Skip to content

Commit 62dae59

Browse files
committed
v2.1.1
1 parent 9a57054 commit 62dae59

File tree

7 files changed

+115
-78
lines changed

7 files changed

+115
-78
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.0)
9+
project(Catch2 LANGUAGES CXX VERSION 2.1.1)
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/nerce2MiN6sVmfCi)
8+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/TpIcJaLaH4WrKlhS)
99

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

3+
# 2.1.1
4+
5+
## Improvements
6+
* Static arrays are now properly stringified like ranges across MSVC/GCC/Clang
7+
* Embedded newer version of Clara -- v1.1.1
8+
* This should fix some warnings dragged in from Clara
9+
* MSVC's CLR exceptions are supported
10+
11+
12+
## Fixes
13+
* Fixed compilation when comparison operators do not return bool (#1147)
14+
* Fixed CLR exceptions blowing up the executable during translation (#1138)
15+
16+
17+
## Other changes
18+
* Many CMake changes
19+
* `NO_SELFTEST` option is deprecated, use `BUILD_TESTING` instead.
20+
* Catch specific CMake options were prefixed with `CATCH_` for namespacing purposes
21+
* Other changes to simplify Catch2's packaging
22+
23+
24+
325
# 2.1.0
426

527
## Improvements

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

0 commit comments

Comments
 (0)