Skip to content

Commit

Permalink
v.10.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Laguna1989 committed Mar 12, 2024
1 parent 9ed4b46 commit c7641d1
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 11 deletions.
1 change: 1 addition & 0 deletions ApprovalTests/ApprovalTests.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
#include "ApprovalTests/reporters/CIBuildOnlyReporterUtils.h"
#include "ApprovalTests/reporters/ClipboardReporter.h"
#include "ApprovalTests/reporters/CombinationReporter.h"
#include "ApprovalTests/reporters/CrossPlatformReporters.h"
#include "ApprovalTests/reporters/CustomReporter.h"
#include "ApprovalTests/reporters/DiffReporter.h"
#include "ApprovalTests/reporters/EnvironmentVariableReporter.h"
Expand Down
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 12
#define APPROVAL_TESTS_VERSION_PATCH 2
#define APPROVAL_TESTS_VERSION_STR "10.12.2"
#define APPROVAL_TESTS_VERSION_MINOR 13
#define APPROVAL_TESTS_VERSION_PATCH 0
#define APPROVAL_TESTS_VERSION_STR "10.13.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 @@ -13,8 +13,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: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.12.2/ApprovalTests.v.10.12.2.hpp">
Download the latest version (v.10.12.2) of the **single header file** here.</a>
:arrow_down: <a href="https://github.com/approvals/ApprovalTests.cpp/releases/download/v.10.13.0/ApprovalTests.v.10.13.0.hpp">
Download the latest version (v.10.13.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.13.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- See the [v.10.13.0 milestone](https://github.com/approvals/ApprovalTests.cpp/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->

* **Breaking changes**
* If you are building against the Catch2v2 in the ApprovalTests repository: The CMake library target name changed from `Catch2::Catch2` to `Catch2v2::Catch2v2`
* **New features**
* Add support for [Catch2 v3](/doc/UsingCatch.md)
* Added CrossPlatformReporters::VSCode - Launches via the [VSCode command line interface](https://code.visualstudio.com/docs/setup/mac). Requires `code` to be in your PATH.
* **Bug fixes**
* None
* **Other changes**
* Remove mingw `getenv_s()` declaration workaround
7 changes: 3 additions & 4 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<!-- 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**
* If you are building against the Catch2v2 in the ApprovalTests repository: The CMake library target name changed from `Catch2::Catch2` to `Catch2v2::Catch2v2`
* None
* **New features**
* Add support for [Catch2 v3](/doc/UsingCatch.md)
* Added CrossPlatformReporters::VSCode - Launches via the [VSCode command line interface](https://code.visualstudio.com/docs/setup/mac). Requires `code` to be in your PATH.
* None
* **Bug fixes**
* None
* **Other changes**
* Remove mingw `getenv_s()` declaration workaround
* 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 = 12
patch = 2
minor = 13
patch = 0

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

## v.x.y.z

## v.10.13.0

### Catch2 v3 support

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

0 comments on commit c7641d1

Please sign in to comment.