From 9c2ee2a307448346ea88061143c1bd4eded7e827 Mon Sep 17 00:00:00 2001 From: Llewellyn Falco Date: Tue, 17 Aug 2021 11:15:56 -0600 Subject: [PATCH] v.10.10.0 release --- ApprovalTests/ApprovalTestsVersion.h | 6 +++--- README.md | 4 ++-- build/release_notes/relnotes_10.10.0.md | 16 ++++++++++++++++ build/relnotes_x.y.z.md | 10 ++-------- build/version.ini | 4 ++-- doc/Features.md | 5 +++++ doc/reference/Storyboard.md | 6 +++--- 7 files changed, 33 insertions(+), 18 deletions(-) create mode 100644 build/release_notes/relnotes_10.10.0.md diff --git a/ApprovalTests/ApprovalTestsVersion.h b/ApprovalTests/ApprovalTestsVersion.h index 00947a62a..4fe2b2632 100644 --- a/ApprovalTests/ApprovalTestsVersion.h +++ b/ApprovalTests/ApprovalTestsVersion.h @@ -1,9 +1,9 @@ #pragma once #define APPROVAL_TESTS_VERSION_MAJOR 10 -#define APPROVAL_TESTS_VERSION_MINOR 9 -#define APPROVAL_TESTS_VERSION_PATCH 1 -#define APPROVAL_TESTS_VERSION_STR "10.9.1" +#define APPROVAL_TESTS_VERSION_MINOR 10 +#define APPROVAL_TESTS_VERSION_PATCH 0 +#define APPROVAL_TESTS_VERSION_STR "10.10.0" #define APPROVAL_TESTS_VERSION \ (APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \ diff --git a/README.md b/README.md index 662c4ff8d..000a7bf52 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ [![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) -:arrow_down: -Download the latest version (v.10.9.1) of the **single header file** here. +:arrow_down: +Download the latest version (v.10.10.0) of the **single header file** here. :book: [**Read the Docs**](https://approvaltestscpp.readthedocs.io/en/latest/) diff --git a/build/release_notes/relnotes_10.10.0.md b/build/release_notes/relnotes_10.10.0.md new file mode 100644 index 000000000..d3fcd48eb --- /dev/null +++ b/build/release_notes/relnotes_10.10.0.md @@ -0,0 +1,16 @@ + + +* **Breaking changes** + * None +* **New features** + * [**Storyboard:**](/doc/reference/Storyboard.md#top) + Print the changes to an object over time + * [**Grid:**](/doc/reference/Grid.md#top) + Create 2D text in a grid format + * Vcpkg integration added: + See [Vcpkg Integration docs](/doc/VcpkgIntegration.md#top) ([vcpkg #18338](https://github.com/microsoft/vcpkg/pull/18338) - thanks @strega-nil!) +* **Bug fixes** + * None +* **Other changes** + * CygWin and MinGW CI builds moved to GitHub Actions (#181) + diff --git a/build/relnotes_x.y.z.md b/build/relnotes_x.y.z.md index e32e17bd0..20478daaf 100644 --- a/build/relnotes_x.y.z.md +++ b/build/relnotes_x.y.z.md @@ -3,14 +3,8 @@ * **Breaking changes** * None * **New features** - * [**Storyboard:**](/doc/reference/Storyboard.md#top) - Print the changes to an object over time - * [**Grid:**](/doc/reference/Grid.md#top) - Create 2D text in a grid format - * Vcpkg integration added: - See [Vcpkg Integration docs](/doc/VcpkgIntegration.md#top) ([vcpkg #18338](https://github.com/microsoft/vcpkg/pull/18338) - thanks @strega-nil!) + * None * **Bug fixes** * None * **Other changes** - * CygWin and MinGW CI builds moved to GitHub Actions (#181) - + * None diff --git a/build/version.ini b/build/version.ini index aceba8198..f1f2015db 100644 --- a/build/version.ini +++ b/build/version.ini @@ -1,5 +1,5 @@ [VERSION] major = 10 -minor = 9 -patch = 1 +minor = 10 +patch = 0 diff --git a/doc/Features.md b/doc/Features.md index 74cd11cea..d0afe0741 100644 --- a/doc/Features.md +++ b/doc/Features.md @@ -6,6 +6,9 @@ ## Contents * [v.x.y.z](#vxyz) + * [v.10.10.0](#v10100) + * [Storyboard](#storyboard) + * [Grid](#grid) * [Vcpkg Integration](#vcpkg-integration) * [v.10.9.0](#v1090) * [Custom template namer](#custom-template-namer) @@ -77,6 +80,8 @@ ## v.x.y.z +## v.10.10.0 + ### Storyboard [Storyboard](/doc/reference/Storyboard.md#top) is a utility that allows you to print the changes to an object over time diff --git a/doc/reference/Storyboard.md b/doc/reference/Storyboard.md index 0452d812b..45d63a684 100644 --- a/doc/reference/Storyboard.md +++ b/doc/reference/Storyboard.md @@ -130,7 +130,7 @@ for (int i = 0; i < 3; ++i) // verify storyboard Approvals::verify(story); ``` -snippet source | anchor +snippet source | anchor ### Making Objects 'Storyboard Friendly' @@ -159,7 +159,7 @@ This means we can write: ```cpp story.addDescriptionWithData("setting alive", game.setAliveCell("*")); ``` -snippet source | anchor +snippet source | anchor instead of @@ -170,7 +170,7 @@ std::string newValue = "*"; game.setAliveCell(newValue); story.addDescriptionWithData("setting alive", newValue); ``` -snippet source | anchor +snippet source | anchor ---