Skip to content

Commit 30536cc

Browse files
committed
v.10.9.1 release
1 parent ce1b740 commit 30536cc

9 files changed

+20
-10
lines changed

ApprovalTests/ApprovalTestsVersion.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#define APPROVAL_TESTS_VERSION_MAJOR 10
44
#define APPROVAL_TESTS_VERSION_MINOR 9
5-
#define APPROVAL_TESTS_VERSION_PATCH 0
6-
#define APPROVAL_TESTS_VERSION_STR "10.9.0"
5+
#define APPROVAL_TESTS_VERSION_PATCH 1
6+
#define APPROVAL_TESTS_VERSION_STR "10.9.1"
77

88
#define APPROVAL_TESTS_VERSION \
99
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \

README.md

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

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

1616
:book: [**Read the Docs**](https://approvaltestscpp.readthedocs.io/en/latest/)
1717

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!-- See the [v.10.9.1 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->
2+
3+
* **Breaking changes**
4+
* None
5+
* **New features**
6+
* None
7+
* **Bug fixes**
8+
* Fix compilation error with [fmt library integration](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/how_tos/UseTheFmtLibraryToPrintObjects.md) that was introduced in the v.10.9.0 release (#180)
9+
* **Other changes**
10+
* None

build/relnotes_x.y.z.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
* **New features**
66
* None
77
* **Bug fixes**
8-
* Fix compilation error with [fmt library integration](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/how_tos/UseTheFmtLibraryToPrintObjects.md) that was introduced in the v.10.9.0 release (#180)
8+
* None
99
* **Other changes**
1010
* None

build/version.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 10
33
minor = 9
4-
patch = 0
4+
patch = 1
55

doc/ToString.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ If, instead, you want to change the default string formatting, so that all calls
198198
```h
199199
#define APPROVAL_TESTS_DEFAULT_STREAM_CONVERTER StringMaker
200200
```
201-
<sup><a href='/ApprovalTests/Approvals.h#L243-L245' title='Snippet source file'>snippet source</a> | <a href='#snippet-customising_to_string_default_converter' title='Start of snippet'>anchor</a></sup>
201+
<sup><a href='/ApprovalTests/Approvals.h#L244-L246' title='Snippet source file'>snippet source</a> | <a href='#snippet-customising_to_string_default_converter' title='Start of snippet'>anchor</a></sup>
202202
<!-- endSnippet -->
203203

204204
## See also

doc/UsingCppUTest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Approval Tests requires that the following are found:
4646
#include <CppUTest/TestPlugin.h>
4747
#include <CppUTest/TestRegistry.h>
4848
```
49-
<sup><a href='/ApprovalTests/integrations/cpputest/CppUTestApprovals.h#L13-L17' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_headers_for_cpputest' title='Start of snippet'>anchor</a></sup>
49+
<sup><a href='/ApprovalTests/integrations/cpputest/CppUTestApprovals.h#L14-L18' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_headers_for_cpputest' title='Start of snippet'>anchor</a></sup>
5050
<!-- endSnippet -->
5151

5252
Approval Tests is tested with CppUTest v4.0.

doc/UsingDoctest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Approval Tests for doctest requires that a file called the following is found:
3232
```h
3333
#include <doctest/doctest.h>
3434
```
35-
<sup><a href='/ApprovalTests/integrations/doctest/DocTestApprovals.h#L15-L17' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_header_for_doctest' title='Start of snippet'>anchor</a></sup>
35+
<sup><a href='/ApprovalTests/integrations/doctest/DocTestApprovals.h#L16-L18' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_header_for_doctest' title='Start of snippet'>anchor</a></sup>
3636
<!-- endSnippet -->
3737

3838
Approval Tests needs doctest version 2.3.4 or above.

doc/UsingUT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Approval Tests for \[Boost\].UT requires that a file called the following is fou
3030
```h
3131
#include <boost/ut.hpp>
3232
```
33-
<sup><a href='/ApprovalTests/integrations/ut/UTApprovals.h#L13-L15' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_header_for_ut' title='Start of snippet'>anchor</a></sup>
33+
<sup><a href='/ApprovalTests/integrations/ut/UTApprovals.h#L14-L16' title='Snippet source file'>snippet source</a> | <a href='#snippet-required_header_for_ut' title='Start of snippet'>anchor</a></sup>
3434
<!-- endSnippet -->
3535

3636
It also requires:

0 commit comments

Comments
 (0)