Skip to content

Commit

Permalink
v.10.12.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
isidore committed Feb 25, 2022
1 parent 58979ee commit 1e7fe54
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions ApprovalTests/ApprovalTestsVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#define APPROVAL_TESTS_VERSION_MAJOR 10
#define APPROVAL_TESTS_VERSION_MINOR 12
#define APPROVAL_TESTS_VERSION_PATCH 1
#define APPROVAL_TESTS_VERSION_STR "10.12.1"
#define APPROVAL_TESTS_VERSION_PATCH 2
#define APPROVAL_TESTS_VERSION_STR "10.12.2"

#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 @@ -12,8 +12,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.1/ApprovalTests.v.10.12.1.hpp">
Download the latest version (v.10.12.1) of the **single header file** here.</a>
: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>

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

Expand Down
11 changes: 11 additions & 0 deletions build/release_notes/relnotes_10.12.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- See the [v.10.12.2 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**
* None
* **Fixed compilation warnings**
* Fix compiler warning C4459 in MSVC with /W4 (See #193)
* Fix compilation failure with clang13 due to -Werror/-Wdeprecated-copy-with-dtor (#194)
5 changes: 2 additions & 3 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
* None
* **Bug fixes**
* None
* **Fixed compilation warnings**
* Fix compiler warning C4459 in MSVC with /W4 (See #193)
* Fix compilation failure with clang13 due to -Werror/-Wdeprecated-copy-with-dtor (#194)
* **Other changes**
* 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 = 10
minor = 12
patch = 1
patch = 2

2 changes: 1 addition & 1 deletion doc/Namers.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ The pattern used by this class for file names is:
```cpp
auto path = "{TestSourceDirectory}/{ApprovalsSubdirectory}/{ApprovedOrReceived}/{TestFileName}.{TestCaseName}.{FileExtension}";
```
<sup><a href='/ApprovalTests/namers/SeparateApprovedAndReceivedDirectoriesNamer.cpp#L7-L9' title='Snippet source file'>snippet source</a> | <a href='#snippet-separate_approved_and_received_directory_names' title='Start of snippet'>anchor</a></sup>
<sup><a href='/ApprovalTests/namers/SeparateApprovedAndReceivedDirectoriesNamer.cpp#L9-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-separate_approved_and_received_directory_names' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

Which results in these file names:
Expand Down

0 comments on commit 1e7fe54

Please sign in to comment.