Skip to content

Commit c7641d1

Browse files
committed
v.10.13.0 release
1 parent 9ed4b46 commit c7641d1

File tree

7 files changed

+24
-11
lines changed

7 files changed

+24
-11
lines changed

ApprovalTests/ApprovalTests.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
#include "ApprovalTests/reporters/CIBuildOnlyReporterUtils.h"
8484
#include "ApprovalTests/reporters/ClipboardReporter.h"
8585
#include "ApprovalTests/reporters/CombinationReporter.h"
86+
#include "ApprovalTests/reporters/CrossPlatformReporters.h"
8687
#include "ApprovalTests/reporters/CustomReporter.h"
8788
#include "ApprovalTests/reporters/DiffReporter.h"
8889
#include "ApprovalTests/reporters/EnvironmentVariableReporter.h"

ApprovalTests/ApprovalTestsVersion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#pragma once
22

33
#define APPROVAL_TESTS_VERSION_MAJOR 10
4-
#define APPROVAL_TESTS_VERSION_MINOR 12
5-
#define APPROVAL_TESTS_VERSION_PATCH 2
6-
#define APPROVAL_TESTS_VERSION_STR "10.12.2"
4+
#define APPROVAL_TESTS_VERSION_MINOR 13
5+
#define APPROVAL_TESTS_VERSION_PATCH 0
6+
#define APPROVAL_TESTS_VERSION_STR "10.13.0"
77

88
#define APPROVAL_TESTS_VERSION \
99
(APPROVAL_TESTS_VERSION_MAJOR * 10000 + APPROVAL_TESTS_VERSION_MINOR * 100 + \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1414
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](/CODE_OF_CONDUCT.md#top)
1515

16-
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.12.2/ApprovalTests.v.10.12.2.hpp">
17-
Download the latest version (v.10.12.2) of the **single header file** here.</a>
16+
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.13.0/ApprovalTests.v.10.13.0.hpp">
17+
Download the latest version (v.10.13.0) of the **single header file** here.</a>
1818

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- See the [v.10.13.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->
2+
3+
* **Breaking changes**
4+
* If you are building against the Catch2v2 in the ApprovalTests repository: The CMake library target name changed from `Catch2::Catch2` to `Catch2v2::Catch2v2`
5+
* **New features**
6+
* Add support for [Catch2 v3](/doc/UsingCatch.md)
7+
* Added CrossPlatformReporters::VSCode - Launches via the [VSCode command line interface](https://code.visualstudio.com/docs/setup/mac). Requires `code` to be in your PATH.
8+
* **Bug fixes**
9+
* None
10+
* **Other changes**
11+
* Remove mingw `getenv_s()` declaration workaround

build/relnotes_x.y.z.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<!-- See the [v.x.y.z milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->
22

33
* **Breaking changes**
4-
* If you are building against the Catch2v2 in the ApprovalTests repository: The CMake library target name changed from `Catch2::Catch2` to `Catch2v2::Catch2v2`
4+
* None
55
* **New features**
6-
* Add support for [Catch2 v3](/doc/UsingCatch.md)
7-
* Added CrossPlatformReporters::VSCode - Launches via the [VSCode command line interface](https://code.visualstudio.com/docs/setup/mac). Requires `code` to be in your PATH.
6+
* None
87
* **Bug fixes**
98
* None
109
* **Other changes**
11-
* Remove mingw `getenv_s()` declaration workaround
10+
* None

build/version.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[VERSION]
22
major = 10
3-
minor = 12
4-
patch = 2
3+
minor = 13
4+
patch = 0
55

doc/Features.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@
8686

8787
## v.x.y.z
8888

89+
## v.10.13.0
90+
8991
### Catch2 v3 support
9092

9193
[Catch2v3](/doc/UsingCatch2v3.md#top) is now supported additionally to Catch2v2.

0 commit comments

Comments
 (0)