Skip to content

Commit 4031715

Browse files
committed
v.10.11.0 release
1 parent 2ed6142 commit 4031715

7 files changed

Lines changed: 29 additions & 11 deletions

File tree

ApprovalTests/ApprovalTests.hpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@
1111
#include "ApprovalTests/reporters/ConvertForCygwin.h"
1212
#include "ApprovalTests/launchers/CommandLauncher.h"
1313
#include "ApprovalTests/reporters/CommandReporter.h"
14-
#include "ApprovalTests/utilities/FileUtils.h"
15-
#include "ApprovalTests/utilities/WinMinGWUtils.h"
1614
#include "ApprovalTests/ApprovalsMacroDefaults.h"
1715
#include "ApprovalTests/utilities/Macros.h"
16+
#include "ApprovalTests/utilities/EmptyFileCreatorFactory.h"
17+
#include "ApprovalTests/utilities/EmptyFileCreatorDisposer.h"
18+
#include "ApprovalTests/utilities/FileUtils.h"
19+
#include "ApprovalTests/utilities/WinMinGWUtils.h"
1820
#include "ApprovalTests/utilities/StringMaker.h"
1921
#include "ApprovalTests/utilities/StringUtils.h"
2022
#include "ApprovalTests/utilities/SystemUtils.h"
@@ -38,6 +40,8 @@
3840
#include "ApprovalTests/writers/StringWriter.h"
3941
#include "ApprovalTests/core/FileApprover.h"
4042
#include "ApprovalTests/integrations/fmt/FmtToString.h"
43+
#include "ApprovalTests/namers/FileNameSanitizerFactory.h"
44+
#include "ApprovalTests/namers/FileNameSanitizerDisposer.h"
4145
#include "ApprovalTests/namers/SubdirectoryDisposer.h"
4246
#include "ApprovalTests/reporters/DefaultReporterFactory.h"
4347
#include "ApprovalTests/reporters/DefaultReporterDisposer.h"

ApprovalTests/ApprovalTestsVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#pragma once
22

33
#define APPROVAL_TESTS_VERSION_MAJOR 10
4-
#define APPROVAL_TESTS_VERSION_MINOR 10
4+
#define APPROVAL_TESTS_VERSION_MINOR 11
55
#define APPROVAL_TESTS_VERSION_PATCH 0
6-
#define APPROVAL_TESTS_VERSION_STR "10.10.0"
6+
#define APPROVAL_TESTS_VERSION_STR "10.11.0"
77

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

README.md

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

15-
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.10.0/ApprovalTests.v.10.10.0.hpp">
16-
Download the latest version (v.10.10.0) of the **single header file** here.</a>
15+
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.11.0/ApprovalTests.v.10.11.0.hpp">
16+
Download the latest version (v.10.11.0) of the **single header file** here.</a>
1717

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- See the [v.10.11.0 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+
* You can now customize how [Test Names are Converted to Valid FileNames](/doc/Namers.md#converting-test-names-to-valid-filenames) (#97)
7+
* You can now customize how [Empty file](/doc/Writers.md#empty-files) are created. This is useful when verifying binary files. (#172)
8+
* **Bug fixes**
9+
* None
10+
* **Other changes**
11+
* Add a copyright statement to the released single header (#189)
12+
* All code snippets in documentation include the `ApprovalTests::` qualification, so example code can be copied and pasted more easily. (#115)

build/relnotes_x.y.z.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
* **Breaking changes**
44
* None
55
* **New features**
6-
* You can now customize how [Test Names are Converted to Valid FileNames](/doc/Namers.md#converting-test-names-to-valid-filenames) (#97)
7-
* You can now customize how [Empty file](/doc/Writers.md#empty-files) are created. This is useful when verifying binary files. (#172)
6+
* None
87
* **Bug fixes**
98
* None
109
* **Other changes**
11-
* Add a copyright statement to the released single header (#189)
12-
* All code snippets in documentation include the `ApprovalTests::` qualification, so example code can be copied and pasted more easily. (#115)
10+
* None

build/version.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 10
3-
minor = 10
3+
minor = 11
44
patch = 0
55

doc/Features.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
## Contents
77

88
* [v.x.y.z](#vxyz)
9+
* [v.10.11.0](#v10110)
910
* [useFileNameSanitizer](#usefilenamesanitizer)
11+
* [useEmptyFileCreator](#useemptyfilecreator)
1012
* [v.10.10.0](#v10100)
1113
* [Storyboard](#storyboard)
1214
* [Grid](#grid)
@@ -81,6 +83,8 @@
8183

8284
## v.x.y.z
8385

86+
## v.10.11.0
87+
8488
### useFileNameSanitizer
8589

8690
You can now customize how invalid filename characters are converted. See [Converting Test Names to Valid FileNames](/doc/Namers.md#converting-test-names-to-valid-filenames)

0 commit comments

Comments
 (0)