Skip to content

Commit 6860c8d

Browse files
committed
v1.12.2
1 parent 3255ee6 commit 6860c8d

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
[![Github Releases](https://img.shields.io/github/release/philsquared/catch.svg)](https://github.com/philsquared/catch/releases)
44
[![Build Status](https://travis-ci.org/philsquared/Catch.svg?branch=master)](https://travis-ci.org/philsquared/Catch)
55
[![Build status](https://ci.appveyor.com/api/projects/status/hrtk60hv6tw6fght/branch/master?svg=true)](https://ci.appveyor.com/project/philsquared/catch/branch/master)
6-
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/q3wLegtaHunTHSls)
6+
[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/jG7wnHX9VAcxpSHy)
77

8-
<a href="https://github.com/philsquared/Catch/releases/download/v1.12.1/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
8+
<a href="https://github.com/philsquared/Catch/releases/download/v1.12.2/catch.hpp">The latest, single header, version can be downloaded directly using this link</a>
99

1010
## What's the Catch?
1111

Diff for: conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class CatchConan(ConanFile):
66
name = "Catch"
7-
version = "1.12.1"
7+
version = "1.12.2"
88
description = "A modern, C++-native, header-only, framework for unit-tests, TDD and BDD"
99
author = "philsquared"
1010
generators = "cmake"

Diff for: docs/release-notes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.12.2
2+
### Fixes
3+
* Fixed missing <cassert> include
4+
15
# 1.12.1
26

37
### Fixes

Diff for: include/internal/catch_version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace Catch {
3838
}
3939

4040
inline Version libraryVersion() {
41-
static Version version( 1, 12, 1, "", 0 );
41+
static Version version( 1, 12, 2, "", 0 );
4242
return version;
4343
}
4444

Diff for: single_include/catch.hpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Catch v1.12.1
3-
* Generated: 2018-03-02 21:17:41.036711
2+
* Catch v1.12.2
3+
* Generated: 2018-05-14 15:10:01.112442
44
* ----------------------------------------------------------
55
* This file has been merged from multiple headers. Please don't edit it directly
66
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@@ -6599,6 +6599,7 @@ namespace Catch {
65996599

66006600
#endif // not Windows
66016601

6602+
#include <cassert>
66026603
#include <set>
66036604
#include <string>
66046605

@@ -8466,7 +8467,7 @@ namespace Catch {
84668467
}
84678468

84688469
inline Version libraryVersion() {
8469-
static Version version( 1, 12, 1, "", 0 );
8470+
static Version version( 1, 12, 2, "", 0 );
84708471
return version;
84718472
}
84728473

@@ -9171,6 +9172,8 @@ std::string toString( std::nullptr_t ) {
91719172
// #included from: catch_result_builder.hpp
91729173
#define TWOBLUECUBES_CATCH_RESULT_BUILDER_HPP_INCLUDED
91739174

9175+
#include <cassert>
9176+
91749177
namespace Catch {
91759178

91769179
ResultBuilder::ResultBuilder( char const* macroName,
@@ -10664,6 +10667,7 @@ namespace Catch {
1066410667
// #included from: ../reporters/catch_reporter_console.hpp
1066510668
#define TWOBLUECUBES_CATCH_REPORTER_CONSOLE_HPP_INCLUDED
1066610669

10670+
#include <cassert>
1066710671
#include <cfloat>
1066810672
#include <cstdio>
1066910673

Diff for: test_package/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class CatchConanTest(ConanFile):
1010
settings = "os", "compiler", "arch", "build_type"
1111
username = getenv("CONAN_USERNAME", "philsquared")
1212
channel = getenv("CONAN_CHANNEL", "testing")
13-
requires = "Catch/1.12.1@%s/%s" % (username, channel)
13+
requires = "Catch/1.12.2@%s/%s" % (username, channel)
1414

1515
def build(self):
1616
cmake = CMake(self)

0 commit comments

Comments
 (0)