File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#pragma once
22
33#define APPROVAL_TESTS_VERSION_MAJOR 10
4- #define APPROVAL_TESTS_VERSION_MINOR 9
5- #define APPROVAL_TESTS_VERSION_PATCH 1
6- #define APPROVAL_TESTS_VERSION_STR "10.9.1 "
4+ #define APPROVAL_TESTS_VERSION_MINOR 10
5+ #define APPROVAL_TESTS_VERSION_PATCH 0
6+ #define APPROVAL_TESTS_VERSION_STR "10.10.0 "
77
88#define APPROVAL_TESTS_VERSION \
99 (APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \
Original file line number Diff line number Diff line change 1111[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
1212[ ![ Contributor Covenant] ( https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg )] ( /CODE_OF_CONDUCT.md#top )
1313
14- :arrow_down : <a href =" https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.9.1 /ApprovalTests.v.10.9.1 .hpp " >
15- Download the latest version (v.10.9.1 ) of the ** single header file** here.</a >
14+ :arrow_down : <a href =" https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.10.0 /ApprovalTests.v.10.10.0 .hpp " >
15+ Download the latest version (v.10.10.0 ) of the ** single header file** here.</a >
1616
1717:book : [ ** Read the Docs** ] ( https://approvaltestscpp.readthedocs.io/en/latest/ )
1818
Original file line number Diff line number Diff line change 1+ <!-- See the [v.10.10.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+ * [ ** Storyboard:** ] ( /doc/reference/Storyboard.md#top )
7+ Print the changes to an object over time
8+ * [ ** Grid:** ] ( /doc/reference/Grid.md#top )
9+ Create 2D text in a grid format
10+ * Vcpkg integration added:
11+ See [ Vcpkg Integration docs] ( /doc/VcpkgIntegration.md#top ) ([ vcpkg #18338 ] ( https://github.com/microsoft/vcpkg/pull/18338 ) - thanks @strega-nil !)
12+ * ** Bug fixes**
13+ * None
14+ * ** Other changes**
15+ * CygWin and MinGW CI builds moved to GitHub Actions (#181 )
16+
Original file line number Diff line number Diff line change 33* ** Breaking changes**
44 * None
55* ** New features**
6- * [ ** Storyboard:** ] ( /doc/reference/Storyboard.md#top )
7- Print the changes to an object over time
8- * [ ** Grid:** ] ( /doc/reference/Grid.md#top )
9- Create 2D text in a grid format
10- * Vcpkg integration added:
11- See [ Vcpkg Integration docs] ( /doc/VcpkgIntegration.md#top ) ([ vcpkg #18338 ] ( https://github.com/microsoft/vcpkg/pull/18338 ) - thanks @strega-nil !)
6+ * None
127* ** Bug fixes**
138 * None
149* ** Other changes**
15- * CygWin and MinGW CI builds moved to GitHub Actions (#181 )
16-
10+ * None
Original file line number Diff line number Diff line change 11[VERSION]
22major = 10
3- minor = 9
4- patch = 1
3+ minor = 10
4+ patch = 0
55
Original file line number Diff line number Diff line change 66## Contents
77
88 * [ v.x.y.z] ( #vxyz )
9+ * [ v.10.10.0] ( #v10100 )
10+ * [ Storyboard] ( #storyboard )
11+ * [ Grid] ( #grid )
912 * [ Vcpkg Integration] ( #vcpkg-integration )
1013 * [ v.10.9.0] ( #v1090 )
1114 * [ Custom template namer] ( #custom-template-namer )
7780
7881## v.x.y.z
7982
83+ ## v.10.10.0
84+
8085### Storyboard
8186
8287[ Storyboard] ( /doc/reference/Storyboard.md#top ) is a utility that allows you to print the changes to an object over time
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ for (int i = 0; i < 3; ++i)
130130// verify storyboard
131131Approvals::verify (story);
132132```
133- <sup><a href='/tests/DocTest_Tests/StoryboardTests.cpp#L62-L96 ' title='Snippet source file'>snippet source</a> | <a href='#snippet-storyboard_complete_example' title='Start of snippet'>anchor</a></sup>
133+ <sup><a href='/tests/DocTest_Tests/StoryboardTests.cpp#L63-L97 ' title='Snippet source file'>snippet source</a> | <a href='#snippet-storyboard_complete_example' title='Start of snippet'>anchor</a></sup>
134134<!-- endSnippet -->
135135
136136### Making Objects 'Storyboard Friendly'
@@ -159,7 +159,7 @@ This means we can write:
159159``` cpp
160160story.addDescriptionWithData(" setting alive" , game.setAliveCell(" *" ));
161161```
162- <sup ><a href =' /tests/DocTest_Tests/StoryboardTests.cpp#L49-L51 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-storyboard_friendly_report ' title =' Start of snippet ' >anchor</a ></sup >
162+ <sup ><a href =' /tests/DocTest_Tests/StoryboardTests.cpp#L50-L52 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-storyboard_friendly_report ' title =' Start of snippet ' >anchor</a ></sup >
163163<!-- endSnippet -->
164164
165165instead of
@@ -170,7 +170,7 @@ std::string newValue = "*";
170170game.setAliveCell(newValue);
171171story.addDescriptionWithData(" setting alive" , newValue);
172172```
173- <sup ><a href =' /tests/DocTest_Tests/StoryboardTests.cpp#L53-L57 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-storyboard_unfriendly_report ' title =' Start of snippet ' >anchor</a ></sup >
173+ <sup ><a href =' /tests/DocTest_Tests/StoryboardTests.cpp#L54-L58 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-storyboard_unfriendly_report ' title =' Start of snippet ' >anchor</a ></sup >
174174<!-- endSnippet -->
175175
176176---
You can’t perform that action at this time.
0 commit comments