Skip to content

Commit

Permalink
v.8.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed May 18, 2020
1 parent e74726a commit ba1b083
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 13 deletions.
2 changes: 2 additions & 0 deletions ApprovalTests/ApprovalTests.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "ApprovalTests/namers/ApprovalTestNamer.h"
#include "ApprovalTests/namers/SectionNameDisposer.h"
#include "ApprovalTests/integrations/google/GoogleCustomizationsFactory.h"
#include "ApprovalTests/integrations/fmt/FmtToString.h"
#include "ApprovalTests/utilities/CartesianProduct.h"
#include "ApprovalTests/writers/ExistingFile.h"
#include "ApprovalTests/utilities/MoreHelpMessages.h"
Expand Down Expand Up @@ -66,6 +67,7 @@
#include "ApprovalTests/integrations/boost_test/BoostTestApprovals.h"
#include "ApprovalTests/integrations/catch/Catch2Approvals.h"
#include "ApprovalTests/integrations/doctest/DocTestApprovals.h"
#include "ApprovalTests/integrations/fmt/FmtApprovals.h"
#include "ApprovalTests/integrations/google/GoogleConfiguration.h"
#include "ApprovalTests/integrations/google/GoogleTestApprovals.h"
#include "ApprovalTests/integrations/ut/UTApprovals.h"
Expand Down
6 changes: 3 additions & 3 deletions ApprovalTests/ApprovalTestsVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#include "ApprovalTests/ApprovalsMacroDefaults.h"

#define APPROVAL_TESTS_VERSION_MAJOR 8
#define APPROVAL_TESTS_VERSION_MINOR 7
#define APPROVAL_TESTS_VERSION_PATCH 1
#define APPROVAL_TESTS_VERSION_STR "8.7.1"
#define APPROVAL_TESTS_VERSION_MINOR 8
#define APPROVAL_TESTS_VERSION_PATCH 0
#define APPROVAL_TESTS_VERSION_STR "8.8.0"

#define APPROVAL_TESTS_VERSION \
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
[![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)

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

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

* **Breaking changes**
* None
* **New features**
* FmtApprovals (#124)
Added integration with the [{fmt}](https://fmt.dev/) library.
See [How to Use the Fmt Library To Print Objects](/doc/how_tos/UseTheFmtLibraryToPrintObjects.md#top).
Thanks @alepez
* **Bug fixes**
* None
* **Other changes**
* None
5 changes: 1 addition & 4 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
* **Breaking changes**
* None
* **New features**
* FmtApprovals (#124)
Added integration with the [{fmt}](https://fmt.dev/) library.
See [How to Use the Fmt Library To Print Objects](/doc/how_tos/UseTheFmtLibraryToPrintObjects.md#top).
Thanks @alepez
* None
* **Bug fixes**
* None
* **Other changes**
Expand Down
4 changes: 2 additions & 2 deletions build/version.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[VERSION]
major = 8
minor = 7
patch = 1
minor = 8
patch = 0

3 changes: 3 additions & 0 deletions doc/Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
## Contents

* [v.x.y.z](#vxyz)
* [v.8.8.0](#v880)
* [FmtApprovals](#fmtapprovals)
* [v.8.7.0](#v870)
* [Options](#options)
Expand Down Expand Up @@ -59,6 +60,8 @@ To change this file edit the source file and then execute ./run_markdown_templat

## v.x.y.z

## v.8.8.0

### FmtApprovals

See [How to Use the Fmt Library To Print Objects](/doc/how_tos/UseTheFmtLibraryToPrintObjects.md#top).
Expand Down
4 changes: 2 additions & 2 deletions doc/how_tos/UseTheFmtLibraryToPrintObjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For example, vectors are not `ostream (<<)` printable by default. However, they
<!-- snippet: fmt_approvals -->
<a id='snippet-fmt_approvals'/></a>
```cpp
std::vector<int> numbers = {1,2,3};
std::vector<int> numbers = {1, 2, 3};
FmtApprovals::verify(numbers);
```
<sup><a href='/tests/DocTest_Tests/integrations/FmtTests.cpp#L16-L19' title='File snippet `fmt_approvals` was extracted from'>snippet source</a> | <a href='#snippet-fmt_approvals' title='Navigate to start of snippet `fmt_approvals`'>anchor</a></sup>
Expand All @@ -54,7 +54,7 @@ This will produce the following output:
```cpp
#include <fmt/ranges.h>
```
<sup><a href='/tests/DocTest_Tests/integrations/FmtTests.cpp#L5-L7' title='File snippet `fmt_includes` was extracted from'>snippet source</a> | <a href='#snippet-fmt_includes' title='Navigate to start of snippet `fmt_includes`'>anchor</a></sup>
<sup><a href='/tests/DocTest_Tests/integrations/FmtTests.cpp#L5-L8' title='File snippet `fmt_includes` was extracted from'>snippet source</a> | <a href='#snippet-fmt_includes' title='Navigate to start of snippet `fmt_includes`'>anchor</a></sup>
<!-- endsnippet -->

## Installation
Expand Down
2 changes: 2 additions & 0 deletions doc/mdsource/Features.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ toc

## v.x.y.z

## v.8.8.0

### FmtApprovals

See [How to Use the Fmt Library To Print Objects](/doc/how_tos/UseTheFmtLibraryToPrintObjects.md#top).
Expand Down
2 changes: 1 addition & 1 deletion mdsource/README.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![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)

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

toc

Expand Down

0 comments on commit ba1b083

Please sign in to comment.