Skip to content

Commit

Permalink
v.0.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
claremacrae committed Jun 16, 2020
1 parent c8fd6e2 commit c873440
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ApprovalTestsQt/ApprovalTestsQtVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

#define APPROVAL_TESTS_QT_VERSION_MAJOR 0
#define APPROVAL_TESTS_QT_VERSION_MINOR 0
#define APPROVAL_TESTS_QT_VERSION_PATCH 1
#define APPROVAL_TESTS_QT_VERSION_STR "0.0.1"
#define APPROVAL_TESTS_QT_VERSION_PATCH 2
#define APPROVAL_TESTS_QT_VERSION_STR "0.0.2"

#define APPROVAL_TESTS_QT_VERSION \
(APPROVAL_TESTS_QT_VERSION_MAJOR * 10000 + APPROVAL_TESTS_QT_VERSION_MINOR * 100 + \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To change this file edit the source file and then execute ./run_markdown_templat
[![Actions Status](https://github.com/approvals/ApprovalTests.cpp.Qt/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp.Qt/actions)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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

<!-- toc -->
## Contents
Expand Down Expand Up @@ -84,7 +84,7 @@ QImage image(10, 20, QImage::Format_RGB32);
image.fill(Qt::red);
ApprovalTestsQt::verifyQImage(image);
```
<sup><a href='/tests/Catch2_Tests/ApprovalsQtTests.cpp#L32-L36' title='File snippet `verify_qimage` was extracted from'>snippet source</a> | <a href='#snippet-verify_qimage' title='Navigate to start of snippet `verify_qimage`'>anchor</a></sup>
<sup><a href='/tests/Catch2_Tests/ApprovalsQtTests.cpp#L30-L34' title='File snippet `verify_qimage` was extracted from'>snippet source</a> | <a href='#snippet-verify_qimage' title='Navigate to start of snippet `verify_qimage`'>anchor</a></sup>
<!-- endsnippet -->
### Verifying a QTableView, e.g. QTableWidget
Expand All @@ -98,5 +98,5 @@ QTableWidget tableWidget;
populateTable(tableWidget);
ApprovalTestsQt::verifyQTableView(tableWidget);
```
<sup><a href='/tests/Catch2_Tests/ApprovalsQtTests.cpp#L45-L49' title='File snippet `verify_table_view` was extracted from'>snippet source</a> | <a href='#snippet-verify_table_view' title='Navigate to start of snippet `verify_table_view`'>anchor</a></sup>
<sup><a href='/tests/Catch2_Tests/ApprovalsQtTests.cpp#L43-L47' title='File snippet `verify_table_view` was extracted from'>snippet source</a> | <a href='#snippet-verify_table_view' title='Navigate to start of snippet `verify_table_view`'>anchor</a></sup>
<!-- endsnippet -->
12 changes: 12 additions & 0 deletions build/release_notes/relnotes_0.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!-- See the [v.0.0.2 milestone](https://github.com/approvals/ApprovalTests.cpp.Qt/milestone/__MILESTONE_NUMBER__?closed=1) for the full list of changes. -->

* **Breaking changes**
* None
* **New features**
* Compatible with ApprovalTests.cpp v.10.0.1 (with Options)
* Add ability to detect library version in code (#4)
* Add simulated single header to allow building from clone or fork (#5)
* **Bug fixes**
* None
* **Other changes**
* None
4 changes: 1 addition & 3 deletions build/relnotes_x.y.z.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
* **Breaking changes**
* None
* **New features**
* Compatible with ApprovalTests.cpp v.10.0.1 (with Options)
* Add ability to detect library version in code (#4)
* Add simulated single header to allow building from clone or fork (#5)
* None
* **Bug fixes**
* None
* **Other changes**
Expand Down
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 = 0
minor = 0
patch = 1
patch = 2

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

* [v.x.y.z](#vxyz)
* [v.0.0.2](#v002)
* [ApprovalTests.cpp.v.10.0.1 (with Options)](#approvaltestscppv1001-with-options)
* [v.0.0.1](#v001)
* [First release.](#first-release)<!-- endtoc -->

## v.x.y.z

## v.0.0.2

### ApprovalTests.cpp.v.10.0.1 (with Options)

ApprovalTests.cpp.v.10.0.1 is now supported.

## v.0.0.1

### First release.
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.0.0.2

### ApprovalTests.cpp.v.10.0.1 (with Options)

ApprovalTests.cpp.v.10.0.1 is now supported.
Expand Down
2 changes: 1 addition & 1 deletion mdsource/README.source.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![Actions Status](https://github.com/approvals/ApprovalTests.cpp.Qt/workflows/build/badge.svg)](https://github.com/approvals/ApprovalTests.cpp.Qt/actions)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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

toc

Expand Down

0 comments on commit c873440

Please sign in to comment.