From 30536cc26b73c8f3ca5a7751171a2ae344d31690 Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Fri, 30 Apr 2021 22:25:50 +0100 Subject: [PATCH] v.10.9.1 release --- ApprovalTests/ApprovalTestsVersion.h | 4 ++-- README.md | 4 ++-- build/release_notes/relnotes_10.9.1.md | 10 ++++++++++ build/relnotes_x.y.z.md | 2 +- build/version.ini | 2 +- doc/ToString.md | 2 +- doc/UsingCppUTest.md | 2 +- doc/UsingDoctest.md | 2 +- doc/UsingUT.md | 2 +- 9 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 build/release_notes/relnotes_10.9.1.md diff --git a/ApprovalTests/ApprovalTestsVersion.h b/ApprovalTests/ApprovalTestsVersion.h index e9aa57840..00947a62a 100644 --- a/ApprovalTests/ApprovalTestsVersion.h +++ b/ApprovalTests/ApprovalTestsVersion.h @@ -2,8 +2,8 @@ #define APPROVAL_TESTS_VERSION_MAJOR 10 #define APPROVAL_TESTS_VERSION_MINOR 9 -#define APPROVAL_TESTS_VERSION_PATCH 0 -#define APPROVAL_TESTS_VERSION_STR "10.9.0" +#define APPROVAL_TESTS_VERSION_PATCH 1 +#define APPROVAL_TESTS_VERSION_STR "10.9.1" #define APPROVAL_TESTS_VERSION \ (APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \ diff --git a/README.md b/README.md index dd40b968a..0e75e8b0c 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,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.0) of the **single header file** here. +:arrow_down: +Download the latest version (v.10.9.1) of the **single header file** here. :book: [**Read the Docs**](https://approvaltestscpp.readthedocs.io/en/latest/) diff --git a/build/release_notes/relnotes_10.9.1.md b/build/release_notes/relnotes_10.9.1.md new file mode 100644 index 000000000..72956eccb --- /dev/null +++ b/build/release_notes/relnotes_10.9.1.md @@ -0,0 +1,10 @@ + + +* **Breaking changes** + * None +* **New features** + * None +* **Bug fixes** + * Fix compilation error with [fmt library integration](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/how_tos/UseTheFmtLibraryToPrintObjects.md) that was introduced in the v.10.9.0 release (#180) +* **Other changes** + * None diff --git a/build/relnotes_x.y.z.md b/build/relnotes_x.y.z.md index 4095c95f0..20478daaf 100644 --- a/build/relnotes_x.y.z.md +++ b/build/relnotes_x.y.z.md @@ -5,6 +5,6 @@ * **New features** * None * **Bug fixes** - * Fix compilation error with [fmt library integration](https://github.com/approvals/ApprovalTests.cpp/blob/master/doc/how_tos/UseTheFmtLibraryToPrintObjects.md) that was introduced in the v.10.9.0 release (#180) + * None * **Other changes** * None diff --git a/build/version.ini b/build/version.ini index db21680cb..aceba8198 100644 --- a/build/version.ini +++ b/build/version.ini @@ -1,5 +1,5 @@ [VERSION] major = 10 minor = 9 -patch = 0 +patch = 1 diff --git a/doc/ToString.md b/doc/ToString.md index 5cbf6858f..a562f7a00 100644 --- a/doc/ToString.md +++ b/doc/ToString.md @@ -198,7 +198,7 @@ If, instead, you want to change the default string formatting, so that all calls ```h #define APPROVAL_TESTS_DEFAULT_STREAM_CONVERTER StringMaker ``` -snippet source | anchor +snippet source | anchor ## See also diff --git a/doc/UsingCppUTest.md b/doc/UsingCppUTest.md index 0a6852e6e..2756fe328 100644 --- a/doc/UsingCppUTest.md +++ b/doc/UsingCppUTest.md @@ -46,7 +46,7 @@ Approval Tests requires that the following are found: #include #include ``` -snippet source | anchor +snippet source | anchor Approval Tests is tested with CppUTest v4.0. diff --git a/doc/UsingDoctest.md b/doc/UsingDoctest.md index cf9047b2c..fd0adb6a9 100644 --- a/doc/UsingDoctest.md +++ b/doc/UsingDoctest.md @@ -32,7 +32,7 @@ Approval Tests for doctest requires that a file called the following is found: ```h #include ``` -snippet source | anchor +snippet source | anchor Approval Tests needs doctest version 2.3.4 or above. diff --git a/doc/UsingUT.md b/doc/UsingUT.md index d25c7c694..29318ab30 100644 --- a/doc/UsingUT.md +++ b/doc/UsingUT.md @@ -30,7 +30,7 @@ Approval Tests for \[Boost\].UT requires that a file called the following is fou ```h #include ``` -snippet source | anchor +snippet source | anchor It also requires: