Skip to content

Commit 9fb12b5

Browse files
committed
v.8.1.0 release
1 parent 590e0fd commit 9fb12b5

8 files changed

+27
-12
lines changed

ApprovalTests/ApprovalTestsVersion.h

+2-2
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 0
5+
#define APPROVALTESTS_VERSION_MINOR 1
66
#define APPROVALTESTS_VERSION_PATCH 0
7-
#define APPROVALTESTS_VERSION_STR "8.0.0"
7+
#define APPROVALTESTS_VERSION_STR "8.1.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
@@ -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) [![Actions Status](https://github.com/approvals/ApprovalTests.cpp/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp/actions) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
1313

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

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

build/relnotes_8.1.0.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
See the [v.8.1.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/5?closed=1) for the full list of changes.
2+
3+
* **Breaking changes**
4+
* None
5+
* **New features**
6+
* Added ability to detect ApprovalTests.cpp version in code: see [Version detection](/doc/Features.md#version-detection) (#40)
7+
* **Bug fixes**
8+
* Relaxed the static_assert check on `__FILE__` to stop it wrongly triggering in Cygwin builds that don't define `_WIN32` (#92)
9+
* Fixed inability to use project as sub-module on Windows due to long filenames - by shortening the names of some files and folders in the tests. (#38)
10+
* **Other changes**
11+
* Include `__FILE__` value in static_assert message, to aid diagnosis
12+
* Implement check for broken links in documentation (#26)
13+
* Fixed some broken links in documentation (#26)

build/relnotes_x.y.z.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/5?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-
* Added ability to detect ApprovalTests.cpp version in code: see [Version detection](/doc/Features.md#version-detection) (#40)
6+
* None
77
* **Bug fixes**
8-
* Relaxed the static_assert check on `__FILE__` to stop it wrongly triggering in Cygwin builds that don't define `_WIN32` (#92)
9-
* Fixed inability to use project as sub-module on Windows due to long filenames - by shortening the names of some files and folders in the tests. (#38)
8+
* None
109
* **Other changes**
11-
* Include `__FILE__` value in static_assert message, to aid diagnosis
12-
* Implement check for broken links in documentation (#26)
13-
* Fixed some broken links in documentation (#26)
10+
* None

build/version.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 8
3-
minor = 0
3+
minor = 1
44
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.1.0](#v810)
1819
* [Version detection](#version-detection)
1920
* [v.8.0.0](#v800)
2021
* [CMake Integration documented](#cmake-integration-documented)
@@ -42,6 +43,8 @@ To change this file edit the source file and then execute ./run_markdown_templat
4243

4344
## v.x.y.z
4445

46+
## v.8.1.0
47+
4548
### Version detection
4649

4750
ApprovalTests provides the following macros to detect the release version, with a set of example values shown in italics:

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.1.0
12+
1113
### Version detection
1214

1315
ApprovalTests provides the following macros to detect the release version, with a set of example values shown in italics:

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) [![Actions Status](https://github.com/approvals/ApprovalTests.cpp/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp/actions) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
66

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

99
toc
1010

0 commit comments

Comments
 (0)