File tree Expand file tree Collapse file tree 7 files changed +33
-18
lines changed Expand file tree Collapse file tree 7 files changed +33
-18
lines changed Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
3
#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 "
7
7
8
8
#define APPROVAL_TESTS_VERSION \
9
9
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \
Original file line number Diff line number Diff line change 11
11
[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
12
12
[ ![ Contributor Covenant] ( https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg )] ( /CODE_OF_CONDUCT.md#top )
13
13
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 >
16
16
17
17
:book : [ ** Read the Docs** ] ( https://approvaltestscpp.readthedocs.io/en/latest/ )
18
18
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 3
3
* ** Breaking changes**
4
4
* None
5
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 !)
6
+ * None
12
7
* ** Bug fixes**
13
8
* None
14
9
* ** 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 1
1
[VERSION]
2
2
major = 10
3
- minor = 9
4
- patch = 1
3
+ minor = 10
4
+ patch = 0
5
5
Original file line number Diff line number Diff line change 6
6
## Contents
7
7
8
8
* [ v.x.y.z] ( #vxyz )
9
+ * [ v.10.10.0] ( #v10100 )
10
+ * [ Storyboard] ( #storyboard )
11
+ * [ Grid] ( #grid )
9
12
* [ Vcpkg Integration] ( #vcpkg-integration )
10
13
* [ v.10.9.0] ( #v1090 )
11
14
* [ Custom template namer] ( #custom-template-namer )
77
80
78
81
## v.x.y.z
79
82
83
+ ## v.10.10.0
84
+
80
85
### Storyboard
81
86
82
87
[ 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)
130
130
// verify storyboard
131
131
Approvals::verify (story);
132
132
```
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>
134
134
<!-- endSnippet -->
135
135
136
136
### Making Objects 'Storyboard Friendly'
@@ -159,7 +159,7 @@ This means we can write:
159
159
``` cpp
160
160
story.addDescriptionWithData(" setting alive" , game.setAliveCell(" *" ));
161
161
```
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 >
163
163
<!-- endSnippet -->
164
164
165
165
instead of
@@ -170,7 +170,7 @@ std::string newValue = "*";
170
170
game.setAliveCell(newValue);
171
171
story.addDescriptionWithData(" setting alive" , newValue);
172
172
```
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 >
174
174
<!-- endSnippet -->
175
175
176
176
---
You can’t perform that action at this time.
0 commit comments