Skip to content

Commit ed38cff

Browse files
claremacraeisidore
andcommitted
v.4.0.0
Co-Authored-By: Llewellyn Falco <[email protected]>
1 parent 195c119 commit ed38cff

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
1111

1212
[![Build Status](https://api.travis-ci.org/approvals/ApprovalTests.cpp.svg?branch=master)](https://travis-ci.org/approvals/ApprovalTests.cpp) [![Build status](https://ci.appveyor.com/api/projects/status/lf3i76ije89oihi5?svg=true)](https://ci.appveyor.com/project/isidore/approvaltests-cpp) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1313

14-
<a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.3.5.0/ApprovalTests.v.3.5.0.hpp">Download the latest version (v.3.5.0) of the **single header file** here.</a>
14+
<a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.4.0.0/ApprovalTests.v.4.0.0.hpp">Download the latest version (v.4.0.0) of the **single header file** here.</a>
1515

1616
<!-- toc -->
1717
## Contents

build/build_hpp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
set -e
55
set -o pipefail
66

7-
LAST_VERSION="v.3.5.0"
7+
LAST_VERSION="v.4.0.0"
88
VERSION="v.X.X.X"
99

1010
PUSH_TO_PRODUCTION="true"

build/relnotes_4.0.0.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
* **Breaking changes**
2+
* `CombinationApprovals::verifyAllCombinations()` no longer requires the template types to be specified. The changes to allow this have changed the template parameters, so it will cause compilation failures in existing code until they are deleted.
3+
To change the code, simply delete the `<....>` from your call. For example:
4+
5+
```diff
6+
- CombinationApprovals::verifyAllCombinations<std::vector<std::string>, std::string>(
7+
+ CombinationApprovals::verifyAllCombinations(
8+
[](std::string s){return s + "!";}, words);
9+
```
10+
11+
* **New features**
12+
* None
13+
* **Bug fixes**
14+
* Better support for doctest - this requires doctest 2.4 - currently in beta.
15+
* **Other changes**
16+
* None

build/relnotes_X.X.X.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
* **Breaking changes**
2-
* `CombinationApprovals::verifyAllCombinations()` no longer requires the template types to be specified. The changes to allow this have changed the template parameters, so it will cause compilation failures in existing code until they are deleted.
3-
To change the code, simply delete the `<....>` from your call. For example:
4-
5-
```diff
6-
- CombinationApprovals::verifyAllCombinations<std::vector<std::string>, std::string>(
7-
+ CombinationApprovals::verifyAllCombinations(
8-
[](std::string s){return s + "!";}, words);
9-
```
10-
2+
* None
113
* **New features**
12-
* Better support for doctest - this requires doctest 2.4 - currently in beta.
4+
* None
135
* **Bug fixes**
146
* None
157
* **Other changes**

mdsource/README.source.md

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

55
[![Build Status](https://api.travis-ci.org/approvals/ApprovalTests.cpp.svg?branch=master)](https://travis-ci.org/approvals/ApprovalTests.cpp) [![Build status](https://ci.appveyor.com/api/projects/status/lf3i76ije89oihi5?svg=true)](https://ci.appveyor.com/project/isidore/approvaltests-cpp) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

7-
<a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.3.5.0/ApprovalTests.v.3.5.0.hpp">Download the latest version (v.3.5.0) of the **single header file** here.</a>
7+
<a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.4.0.0/ApprovalTests.v.4.0.0.hpp">Download the latest version (v.4.0.0) of the **single header file** here.</a>
88

99
toc
1010

0 commit comments

Comments
 (0)