Skip to content

Commit 5b1407d

Browse files
committed
v.8.2.0 release
1 parent 67a68df commit 5b1407d

8 files changed

+30
-15
lines changed

ApprovalTests/ApprovalTestsVersion.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#define APPROVALTESTS_CPP_APPROVALTESTSVERSION_H
33

44
#define APPROVALTESTS_VERSION_MAJOR 8
5-
#define APPROVALTESTS_VERSION_MINOR 1
6-
#define APPROVALTESTS_VERSION_PATCH 1
7-
#define APPROVALTESTS_VERSION_STR "8.1.1"
5+
#define APPROVALTESTS_VERSION_MINOR 2
6+
#define APPROVALTESTS_VERSION_PATCH 0
7+
#define APPROVALTESTS_VERSION_STR "8.2.0"
88

99
#define APPROVALTESTS_VERSION \
1010
(APPROVALTESTS_VERSION_MAJOR * 10000 + APPROVALTESTS_VERSION_MINOR * 100 + \

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
1515
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1616
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
1717

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

2020
<!-- toc -->
2121
## Contents

build/relnotes_8.2.0.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
See the [v.8.2.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/6?closed=1) for the full list of changes.
2+
3+
* **Breaking changes**
4+
* None
5+
* **New features**
6+
* [Conan](https://conan.io/) Integration provided, and documented in [Conan Integration](/doc/ConanIntegration.md#top) ([Conan issue 741](https://github.com/conan-io/conan-center-index/pull/741), thank you @dheater)
7+
* **Bug fixes**
8+
* 3 locations now throw an exception if their `system()` call failed. Previously they silently ignored the error. (#94, thank you @p-podsiadly)
9+
* `ClipboardReporter`
10+
* `SystemLauncher::launch()`
11+
* `FileUtilsSystemSpecific::copyFile()`
12+
* Fixed a bug that could break [custom comparators](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/CustomComparators.md#top), stopping them from taking effect, depending on how their disposers were stored (#93, thank you @p-podsiadly)
13+
* **Other changes**
14+
* Windows.h no longer included in SystemUtils.h (#96, thank you @p-podsiadly)

build/relnotes_x.y.z.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/6?closed=1) for the full list of changes.
1+
<!-- See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->
22

33
* **Breaking changes**
44
* None
55
* **New features**
6-
* [Conan](https://conan.io/) Integration provided, and documented in [Conan Integration](/doc/ConanIntegration.md#top) ([Conan issue 741](https://github.com/conan-io/conan-center-index/pull/741), thank you @dheater)
6+
* None
77
* **Bug fixes**
8-
* 3 locations now throw an exception if their `system()` call failed. Previously they silently ignored the error. (#94, thank you @p-podsiadly)
9-
* `ClipboardReporter`
10-
* `SystemLauncher::launch()`
11-
* `FileUtilsSystemSpecific::copyFile()`
12-
* Fixed a bug that could break [custom comparators](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/CustomComparators.md#top), stopping them from taking effect, depending on how their disposers were stored (#93, thank you @p-podsiadly)
8+
* None
139
* **Other changes**
14-
* Windows.h no longer included in SystemUtils.h (#96, thank you @p-podsiadly)
10+
* None

build/version.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 8
3-
minor = 1
4-
patch = 1
3+
minor = 2
4+
patch = 0
55

doc/Features.md

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
1515
## Contents
1616

1717
* [v.x.y.z](#vxyz)
18+
* [v.8.2.0](#v820)
1819
* [Conan Integration documented](#conan-integration-documented)
1920
* [v.8.1.0](#v810)
2021
* [Version detection](#version-detection)
@@ -44,6 +45,8 @@ To change this file edit the source file and then execute ./run_markdown_templat
4445

4546
## v.x.y.z
4647

48+
## v.8.2.0
49+
4750
### Conan Integration documented
4851

4952
See [Conan Integration](/doc/ConanIntegration.md#top).

doc/mdsource/Features.source.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ toc
88

99
## v.x.y.z
1010

11+
## v.8.2.0
12+
1113
### Conan Integration documented
1214

1315
See [Conan Integration](/doc/ConanIntegration.md#top).

mdsource/README.source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
99
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
1010

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

1313
toc
1414

0 commit comments

Comments
 (0)