From a2af56c19ab59215c2bda2c0575afa245a54cbfa Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Wed, 3 Jun 2020 21:04:14 +0100 Subject: [PATCH] v.8.9.2 release --- ApprovalTests/ApprovalTestsVersion.h | 4 ++-- README.md | 2 +- build/release_notes/relnotes_8.9.2.md | 27 +++++++++++++++++++++++++++ build/relnotes_x.y.z.md | 21 ++------------------- build/version.ini | 2 +- mdsource/README.source.md | 2 +- 6 files changed, 34 insertions(+), 24 deletions(-) create mode 100644 build/release_notes/relnotes_8.9.2.md diff --git a/ApprovalTests/ApprovalTestsVersion.h b/ApprovalTests/ApprovalTestsVersion.h index bdfbfc008..9a6bea057 100644 --- a/ApprovalTests/ApprovalTestsVersion.h +++ b/ApprovalTests/ApprovalTestsVersion.h @@ -4,8 +4,8 @@ #define APPROVAL_TESTS_VERSION_MAJOR 8 #define APPROVAL_TESTS_VERSION_MINOR 9 -#define APPROVAL_TESTS_VERSION_PATCH 1 -#define APPROVAL_TESTS_VERSION_STR "8.9.1" +#define APPROVAL_TESTS_VERSION_PATCH 2 +#define APPROVAL_TESTS_VERSION_STR "8.9.2" #define APPROVAL_TESTS_VERSION \ (APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \ diff --git a/README.md b/README.md index 7f0382e87..98b6baa72 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat [![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) -Download the latest version (v.8.9.1) of the **single header file** here. +Download the latest version (v.8.9.2) of the **single header file** here. ## Contents diff --git a/build/release_notes/relnotes_8.9.2.md b/build/release_notes/relnotes_8.9.2.md new file mode 100644 index 000000000..6273c487d --- /dev/null +++ b/build/release_notes/relnotes_8.9.2.md @@ -0,0 +1,27 @@ + + +## DON'T PANIC! + +We expect most of our users to have no problem with this upgrade. Source code is totally backwards-compatible, as long as you don't treat compiler warnings as errors. Even if you do, it only applies when: + + 1. you are passing in a specific reporter, which is usually an infrequent and temporary coding state, + 2. you call `verifyWithExtension()`. + +## Deprecating verify(..., Reporter) + +This is the second of a series of rapid releases, to make small steps in deprecating passing in a Reporter object, in favor of an Options object, to the `verify*()` methods. See [Why We Are Converting To Options](/doc/explanations/WhyWeAreConvertingToOptions.md#top) for easy ways to update your code. + +1. deprecation warnings are off: users can opt-in (v.8.7.0) +1. deprecation warnings are on: users can opt-out (v.8.9.1) +1. deprecation warnings are forced, code still exists (v.8.9.2) <== you are here +1. the deprecated methods are hidden: users can opt-in +1. the deprecated methods are removed + +* **Breaking changes** + * None +* **New features** + * None +* **Bug fixes** + * None +* **Other changes** + * `APPROVAL_TESTS_SHOW_DEPRECATION_WARNINGS` is now ignored. Warnings are always shown when using the `verify*()` methods that took a Reporter. diff --git a/build/relnotes_x.y.z.md b/build/relnotes_x.y.z.md index 6273c487d..20478daaf 100644 --- a/build/relnotes_x.y.z.md +++ b/build/relnotes_x.y.z.md @@ -1,21 +1,4 @@ - - -## DON'T PANIC! - -We expect most of our users to have no problem with this upgrade. Source code is totally backwards-compatible, as long as you don't treat compiler warnings as errors. Even if you do, it only applies when: - - 1. you are passing in a specific reporter, which is usually an infrequent and temporary coding state, - 2. you call `verifyWithExtension()`. - -## Deprecating verify(..., Reporter) - -This is the second of a series of rapid releases, to make small steps in deprecating passing in a Reporter object, in favor of an Options object, to the `verify*()` methods. See [Why We Are Converting To Options](/doc/explanations/WhyWeAreConvertingToOptions.md#top) for easy ways to update your code. - -1. deprecation warnings are off: users can opt-in (v.8.7.0) -1. deprecation warnings are on: users can opt-out (v.8.9.1) -1. deprecation warnings are forced, code still exists (v.8.9.2) <== you are here -1. the deprecated methods are hidden: users can opt-in -1. the deprecated methods are removed + * **Breaking changes** * None @@ -24,4 +7,4 @@ This is the second of a series of rapid releases, to make small steps in depreca * **Bug fixes** * None * **Other changes** - * `APPROVAL_TESTS_SHOW_DEPRECATION_WARNINGS` is now ignored. Warnings are always shown when using the `verify*()` methods that took a Reporter. + * None diff --git a/build/version.ini b/build/version.ini index 2b78ff77e..3b156357b 100644 --- a/build/version.ini +++ b/build/version.ini @@ -1,5 +1,5 @@ [VERSION] major = 8 minor = 9 -patch = 1 +patch = 2 diff --git a/mdsource/README.source.md b/mdsource/README.source.md index 6de575db8..c8b81fb8b 100644 --- a/mdsource/README.source.md +++ b/mdsource/README.source.md @@ -8,7 +8,7 @@ [![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) -Download the latest version (v.8.9.1) of the **single header file** here. +Download the latest version (v.8.9.2) of the **single header file** here. toc