Skip to content

Commit

Permalink
v.8.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed Jan 26, 2020
1 parent 590e0fd commit 9fb12b5
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 12 deletions.
4 changes: 2 additions & 2 deletions ApprovalTests/ApprovalTestsVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#define APPROVALTESTS_CPP_APPROVALTESTSVERSION_H

#define APPROVALTESTS_VERSION_MAJOR 8
#define APPROVALTESTS_VERSION_MINOR 0
#define APPROVALTESTS_VERSION_MINOR 1
#define APPROVALTESTS_VERSION_PATCH 0
#define APPROVALTESTS_VERSION_STR "8.0.0"
#define APPROVALTESTS_VERSION_STR "8.1.0"

#define APPROVALTESTS_VERSION \
(APPROVALTESTS_VERSION_MAJOR * 10000 + APPROVALTESTS_VERSION_MINOR * 100 + \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To change this file edit the source file and then execute ./run_markdown_templat

[![Build Status](https://api.travis-ci.org/approvals/ApprovalTests.cpp.svg?branch=master)](https://travis-ci.org/approvals/ApprovalTests.cpp) [![Build status](https://ci.appveyor.com/api/projects/status/lf3i76ije89oihi5?svg=true)](https://ci.appveyor.com/project/isidore/approvaltests-cpp) [![Actions Status](https://github.com/approvals/ApprovalTests.cpp/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp/actions) [![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)

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

<!-- toc -->
## Contents
Expand Down
13 changes: 13 additions & 0 deletions build/relnotes_8.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
See the [v.8.1.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/5?closed=1) for the full list of changes.

* **Breaking changes**
* None
* **New features**
* Added ability to detect ApprovalTests.cpp version in code: see [Version detection](/doc/Features.md#version-detection) (#40)
* **Bug fixes**
* Relaxed the static_assert check on `__FILE__` to stop it wrongly triggering in Cygwin builds that don't define `_WIN32` (#92)
* Fixed inability to use project as sub-module on Windows due to long filenames - by shortening the names of some files and folders in the tests. (#38)
* **Other changes**
* Include `__FILE__` value in static_assert message, to aid diagnosis
* Implement check for broken links in documentation (#26)
* Fixed some broken links in documentation (#26)
11 changes: 4 additions & 7 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/5?closed=1) for the full list of changes.
<!-- See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->

* **Breaking changes**
* None
* **New features**
* Added ability to detect ApprovalTests.cpp version in code: see [Version detection](/doc/Features.md#version-detection) (#40)
* None
* **Bug fixes**
* Relaxed the static_assert check on `__FILE__` to stop it wrongly triggering in Cygwin builds that don't define `_WIN32` (#92)
* Fixed inability to use project as sub-module on Windows due to long filenames - by shortening the names of some files and folders in the tests. (#38)
* None
* **Other changes**
* Include `__FILE__` value in static_assert message, to aid diagnosis
* Implement check for broken links in documentation (#26)
* Fixed some broken links in documentation (#26)
* None
2 changes: 1 addition & 1 deletion build/version.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[VERSION]
major = 8
minor = 0
minor = 1
patch = 0

3 changes: 3 additions & 0 deletions doc/Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
## Contents

* [v.x.y.z](#vxyz)
* [v.8.1.0](#v810)
* [Version detection](#version-detection)
* [v.8.0.0](#v800)
* [CMake Integration documented](#cmake-integration-documented)
Expand Down Expand Up @@ -42,6 +43,8 @@ To change this file edit the source file and then execute ./run_markdown_templat

## v.x.y.z

## v.8.1.0

### Version detection

ApprovalTests provides the following macros to detect the release version, with a set of example values shown in italics:
Expand Down
2 changes: 2 additions & 0 deletions doc/mdsource/Features.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ toc

## v.x.y.z

## v.8.1.0

### Version detection

ApprovalTests provides the following macros to detect the release version, with a set of example values shown in italics:
Expand Down
2 changes: 1 addition & 1 deletion mdsource/README.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![Build Status](https://api.travis-ci.org/approvals/ApprovalTests.cpp.svg?branch=master)](https://travis-ci.org/approvals/ApprovalTests.cpp) [![Build status](https://ci.appveyor.com/api/projects/status/lf3i76ije89oihi5?svg=true)](https://ci.appveyor.com/project/isidore/approvaltests-cpp) [![Actions Status](https://github.com/approvals/ApprovalTests.cpp/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp/actions) [![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)

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

toc

Expand Down

0 comments on commit 9fb12b5

Please sign in to comment.