Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2017-05-24 19:30:28 +0300
committeronqtam <vik.kirilov@gmail.com>2017-05-24 19:30:46 +0300
commit9ae8e02587f52547271227defb25e9738402e49c (patch)
tree2442efab5489ccc166e62fab0ef54ae7fcd9c1c0
parentf32b55067023e0130a9615007df46a9121eea42b (diff)
version 1.2.1
-rw-r--r--README.md2
-rw-r--r--doc/html_generated/testcases.html2
-rw-r--r--doc/html_generated/tutorial.html2
-rw-r--r--doctest/doctest.h4
-rw-r--r--doctest/parts/doctest_fwd.h4
-rw-r--r--examples/all_features/test_output/version.txt2
-rw-r--r--scripts/hello_world.cpp2
-rw-r--r--scripts/version.txt2
8 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 02a43074..8daea6e9 100644
--- a/README.md
+++ b/README.md
@@ -80,7 +80,7 @@ You can read more about it in [**the article**](https://accu.org/var/uploads/jou
[![download](https://img.shields.io/badge/download%20%20-latest-blue.svg)](https://raw.githubusercontent.com/onqtam/doctest/master/doctest/doctest.h)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/503/badge)](https://bestpractices.coreinfrastructure.org/projects/503)
[![Join the chat at https://gitter.im/onqtam/doctest](https://badges.gitter.im/onqtam/doctest.svg)](https://gitter.im/onqtam/doctest?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-[![Try it online](https://img.shields.io/badge/try%20it-online-orange.svg)](https://wandbox.org/permlink/SJrRfwy3aaLwjndl)
+[![Try it online](https://img.shields.io/badge/try%20it-online-orange.svg)](https://wandbox.org/permlink/JNeMtO2J2Q74owJX)
<!--
[![Language](https://img.shields.io/badge/language-C++-blue.svg)](https://isocpp.org/)
[![documentation](https://img.shields.io/badge/documentation%20%20-online-blue.svg)](https://github.com/onqtam/doctest/blob/master/doc/markdown/readme.md#reference)
diff --git a/doc/html_generated/testcases.html b/doc/html_generated/testcases.html
index 1d952ebe..7b3805b8 100644
--- a/doc/html_generated/testcases.html
+++ b/doc/html_generated/testcases.html
@@ -69,7 +69,7 @@ class UniqueTestsFixture {
TEST_CASE_FIXTURE(UniqueTestsFixture, "Create Employee/No Name") {
REQUIRE_THROWS(conn.executeSQL("INSERT INTO employee (id, name) VALUES (?, ?)", getID(), ""));
}
- TEST_CASE_METHOD(UniqueTestsFixture, "Create Employee/Normal") {
+ TEST_CASE_FIXTURE(UniqueTestsFixture, "Create Employee/Normal") {
REQUIRE(conn.executeSQL("INSERT INTO employee (id, name) VALUES (?, ?)", getID(), "Joe Bloggs"));
}
```
diff --git a/doc/html_generated/tutorial.html b/doc/html_generated/tutorial.html
index e1cb7829..4d08dc37 100644
--- a/doc/html_generated/tutorial.html
+++ b/doc/html_generated/tutorial.html
@@ -58,7 +58,7 @@ with expansion:
CHECK( 0 == 1 )
```
-Note that we get the actual return value of ```factorial(0)``` printed for us (0) - even though we used a natural expression with the ```==``` operator. That let's us immediately see what the problem is.
+Note that we get the actual return value of ```factorial(0)``` printed for us (0) - even though we used a natural expression with the ```==``` operator. That lets us immediately see what the problem is.
Let's change the factorial function to:
diff --git a/doctest/doctest.h b/doctest/doctest.h
index 71a9c773..695c271b 100644
--- a/doctest/doctest.h
+++ b/doctest/doctest.h
@@ -103,8 +103,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 0
-#define DOCTEST_VERSION_STR "1.2.0"
+#define DOCTEST_VERSION_PATCH 1
+#define DOCTEST_VERSION_STR "1.2.1"
#define DOCTEST_VERSION \
(DOCTEST_VERSION_MAJOR * 10000 + DOCTEST_VERSION_MINOR * 100 + DOCTEST_VERSION_PATCH)
diff --git a/doctest/parts/doctest_fwd.h b/doctest/parts/doctest_fwd.h
index 3ee3415b..4b17f10a 100644
--- a/doctest/parts/doctest_fwd.h
+++ b/doctest/parts/doctest_fwd.h
@@ -100,8 +100,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 0
-#define DOCTEST_VERSION_STR "1.2.0"
+#define DOCTEST_VERSION_PATCH 1
+#define DOCTEST_VERSION_STR "1.2.1"
#define DOCTEST_VERSION \
(DOCTEST_VERSION_MAJOR * 10000 + DOCTEST_VERSION_MINOR * 100 + DOCTEST_VERSION_PATCH)
diff --git a/examples/all_features/test_output/version.txt b/examples/all_features/test_output/version.txt
index eb769efb..1a2e0ae1 100644
--- a/examples/all_features/test_output/version.txt
+++ b/examples/all_features/test_output/version.txt
@@ -1 +1 @@
-[doctest] doctest version is "1.2.0"
+[doctest] doctest version is "1.2.1"
diff --git a/scripts/hello_world.cpp b/scripts/hello_world.cpp
index ff49eddc..61d2889c 100644
--- a/scripts/hello_world.cpp
+++ b/scripts/hello_world.cpp
@@ -1,5 +1,5 @@
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-#include <doctest.h>
+#include "doctest.h"
int fact(int n) {
return n <= 1 ? n : fact(n - 1) * n;
diff --git a/scripts/version.txt b/scripts/version.txt
index 867e5243..cb174d58 100644
--- a/scripts/version.txt
+++ b/scripts/version.txt
@@ -1 +1 @@
-1.2.0 \ No newline at end of file
+1.2.1 \ No newline at end of file