Skip to content

Commit 9c2ee2a

Browse files
committed
v.10.10.0 release
1 parent 4665a0c commit 9c2ee2a

File tree

7 files changed

+33
-18
lines changed

7 files changed

+33
-18
lines changed

ApprovalTests/ApprovalTestsVersion.h

Lines changed: 3 additions & 3 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 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 + \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+

build/relnotes_x.y.z.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,8 @@
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

build/version.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 10
3-
minor = 9
4-
patch = 1
3+
minor = 10
4+
patch = 0
55

doc/Features.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
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)
@@ -77,6 +80,8 @@
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

doc/reference/Storyboard.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ for (int i = 0; i < 3; ++i)
130130
// verify storyboard
131131
Approvals::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
160160
story.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

165165
instead of
@@ -170,7 +170,7 @@ std::string newValue = "*";
170170
game.setAliveCell(newValue);
171171
story.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
---

0 commit comments

Comments
 (0)