Skip to content

Commit

Permalink
v.10.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed Apr 30, 2021
1 parent ce1b740 commit 30536cc
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ApprovalTests/ApprovalTestsVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#define APPROVAL_TESTS_VERSION_MAJOR 10
#define APPROVAL_TESTS_VERSION_MINOR 9
#define APPROVAL_TESTS_VERSION_PATCH 0
#define APPROVAL_TESTS_VERSION_STR "10.9.0"
#define APPROVAL_TESTS_VERSION_PATCH 1
#define APPROVAL_TESTS_VERSION_STR "10.9.1"

#define APPROVAL_TESTS_VERSION \
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
[![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)

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

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

Expand Down
10 changes: 10 additions & 0 deletions build/release_notes/relnotes_10.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!-- See the [v.10.9.1 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->

* **Breaking changes**
* None
* **New features**
* None
* **Bug fixes**
* 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)
* **Other changes**
* None
2 changes: 1 addition & 1 deletion build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
* **New features**
* None
* **Bug fixes**
* 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)
* None
* **Other changes**
* None
2 changes: 1 addition & 1 deletion build/version.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[VERSION]
major = 10
minor = 9
patch = 0
patch = 1

2 changes: 1 addition & 1 deletion doc/ToString.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ If, instead, you want to change the default string formatting, so that all calls
```h
#define APPROVAL_TESTS_DEFAULT_STREAM_CONVERTER StringMaker
```
<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>
<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>
<!-- endSnippet -->

## See also
Expand Down
2 changes: 1 addition & 1 deletion doc/UsingCppUTest.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Approval Tests requires that the following are found:
#include <CppUTest/TestPlugin.h>
#include <CppUTest/TestRegistry.h>
```
<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>
<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>
<!-- endSnippet -->

Approval Tests is tested with CppUTest v4.0.
Expand Down
2 changes: 1 addition & 1 deletion doc/UsingDoctest.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Approval Tests for doctest requires that a file called the following is found:
```h
#include <doctest/doctest.h>
```
<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>
<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>
<!-- endSnippet -->

Approval Tests needs doctest version 2.3.4 or above.
Expand Down
2 changes: 1 addition & 1 deletion doc/UsingUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Approval Tests for \[Boost\].UT requires that a file called the following is fou
```h
#include <boost/ut.hpp>
```
<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>
<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>
<!-- endSnippet -->

It also requires:
Expand Down

0 comments on commit 30536cc

Please sign in to comment.