Skip to content

Commit

Permalink
v.10.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed Feb 15, 2021
1 parent 5cbdf1b commit 3e5635e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
6 changes: 3 additions & 3 deletions ApprovalTests/ApprovalTestsVersion.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once

#define APPROVAL_TESTS_VERSION_MAJOR 10
#define APPROVAL_TESTS_VERSION_MINOR 7
#define APPROVAL_TESTS_VERSION_PATCH 1
#define APPROVAL_TESTS_VERSION_STR "10.7.1"
#define APPROVAL_TESTS_VERSION_MINOR 8
#define APPROVAL_TESTS_VERSION_PATCH 0
#define APPROVAL_TESTS_VERSION_STR "10.8.0"

#define APPROVAL_TESTS_VERSION \
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
[![ConanCenter package](https://repology.org/badge/version-for-repo/conancenter/approvaltests.cpp.svg)](https://conan.io/center/approvaltests.cpp)

:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.7.1/ApprovalTests.v.10.7.1.hpp">
Download the latest version (v.10.7.1) of the **single header file** here.</a>
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.8.0/ApprovalTests.v.10.8.0.hpp">
Download the latest version (v.10.8.0) of the **single header file** here.</a>

:book: [**Read the Docs**](https://approvaltestscpp.readthedocs.io/en/latest/)

Expand Down
11 changes: 11 additions & 0 deletions build/release_notes/relnotes_10.8.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- See the [v.10.8.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->

* **Breaking changes**
* None
* **New features**
* None
* **Bug fixes**
* Ninja builds now work when inside source tree. (#171)
* The entire [Misconfigured Builds](/doc/TroubleshootingMisconfiguredBuild.md#top) page of workarounds is no needed, but is retained for those using older releases.
* **Other changes**
* None
3 changes: 1 addition & 2 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* **New features**
* None
* **Bug fixes**
* Ninja builds now work when inside source tree. (#171)
* The entire [Misconfigured Builds](/doc/TroubleshootingMisconfiguredBuild.md#top) page of workarounds is no needed, but is retained for those using older releases.
* None
* **Other changes**
* None
4 changes: 2 additions & 2 deletions build/version.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[VERSION]
major = 10
minor = 7
patch = 1
minor = 8
patch = 0

3 changes: 3 additions & 0 deletions doc/Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
## Contents

* [v.x.y.z](#vxyz)
* [v.10.8.0](#v1080)
* [Ninja builds work when inside source tree](#ninja-builds-work-when-inside-source-tree)
* [v.10.7.0](#v1070)
* [CombinationApprovals header](#combinationapprovals-header)
Expand Down Expand Up @@ -73,6 +74,8 @@

## v.x.y.z

## v.10.8.0

### Ninja builds work when inside source tree

The entire [Misconfigured Builds](/doc/TroubleshootingMisconfiguredBuild.md#top) page of workarounds is no needed, but is retained for those using older releases.
Expand Down

0 comments on commit 3e5635e

Please sign in to comment.