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-10-06 11:01:05 +0300
committeronqtam <vik.kirilov@gmail.com>2017-10-06 11:01:05 +0300
commitc80eed17d171a0a3b672755562bc3ad92c18e120 (patch)
tree5156820fce759a0300db31d612b6b8e1b67afdb1
parentf1688b5b3ec6b7e0b80663873fee7d750ab9595e (diff)
[release] version 1.2.5
-rw-r--r--README.md2
-rw-r--r--doc/html_generated/roadmap.html2
-rw-r--r--doc/html_generated/testcases.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/version.txt2
7 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 817ceeb0..058d5d66 100644
--- a/README.md
+++ b/README.md
@@ -84,7 +84,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/uMK1C0gAUH0UzimM)
+[![Try it online](https://img.shields.io/badge/try%20it-online-orange.svg)](https://wandbox.org/permlink/NK3WcwCDQdPfkWvs)
<!--
[![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/roadmap.html b/doc/html_generated/roadmap.html
index acb67fb7..51ac77bc 100644
--- a/doc/html_generated/roadmap.html
+++ b/doc/html_generated/roadmap.html
@@ -77,7 +77,7 @@ Planned features for future releases - order changes constantly...
- see slide 38 here - https://github.com/boostcon/cppnow_presentations_2017/blob/master/05-19-2017_friday/effective_cmake__daniel_pfeifer__cppnow_05-19-2017.pdf
- should test crash handling
- should test more config options
- - don't cheat for maxing out code coverage (see [coverage_maxout.cpp](../../examples/coverage_maxout.cpp)
+ - don't cheat for maxing out code coverage (see [coverage_maxout.cpp](../../examples/all_features/coverage_maxout.cpp))
- should test C++11 stuff - perhaps inspect the CMAKE_CXX_FLAGS for -std=c++11 on the CI and add more targets/tests
- test tricky stuff like expressions with commas in asserts
diff --git a/doc/html_generated/testcases.html b/doc/html_generated/testcases.html
index 01c5abeb..b6605e6e 100644
--- a/doc/html_generated/testcases.html
+++ b/doc/html_generated/testcases.html
@@ -125,7 +125,7 @@ Multiple decorators can be used at the same time. These are the currently suppor
- **```skip(bool = true)```** - marks the test case to be skipped from execution - unless the ```--no-skip``` option is used
- **```may_fail(bool = true)```** - doesn't fail the test if any given assertion fails (but still reports it) - this can be useful to flag a work-in-progress, or a known issue that you don't want to immediately fix but still want to track in the your tests
-- **```should_fail("text")```** - like **```may_fail()```** but fails the test if it passes - his can be useful if you want to be notified of accidental, or third-party, fixes
+- **```should_fail(bool = true)```** - like **```may_fail()```** but fails the test if it passes - his can be useful if you want to be notified of accidental, or third-party, fixes
- **```expected_failures(int)```** - defines the number of assertions that are expected to fail within the test case - reported as failure when the number of failed assertions is different than the declared expected number of failures
- **```timeout(double)```** - fails the test case if its execution exceeds this limit (in seconds) - but doesn't terminate it - that would require subprocess support
- **```test_suite("name")```** - can be used on test cases to override (or just set) the test suite they are in
diff --git a/doctest/doctest.h b/doctest/doctest.h
index e76f7411..d998b5e8 100644
--- a/doctest/doctest.h
+++ b/doctest/doctest.h
@@ -105,8 +105,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 4
-#define DOCTEST_VERSION_STR "1.2.4"
+#define DOCTEST_VERSION_PATCH 5
+#define DOCTEST_VERSION_STR "1.2.5"
#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 f4dea94f..554aadbe 100644
--- a/doctest/parts/doctest_fwd.h
+++ b/doctest/parts/doctest_fwd.h
@@ -102,8 +102,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 4
-#define DOCTEST_VERSION_STR "1.2.4"
+#define DOCTEST_VERSION_PATCH 5
+#define DOCTEST_VERSION_STR "1.2.5"
#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 b0a2678e..02489fbe 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.4"
+[doctest] doctest version is "1.2.5"
diff --git a/scripts/version.txt b/scripts/version.txt
index b966e81a..3a1f10ea 100644
--- a/scripts/version.txt
+++ b/scripts/version.txt
@@ -1 +1 @@
-1.2.4 \ No newline at end of file
+1.2.5 \ No newline at end of file