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>2018-03-10 17:06:36 +0300
committeronqtam <vik.kirilov@gmail.com>2018-03-10 17:06:36 +0300
commitc168e367660271037d986fae4f8ac4783a092924 (patch)
tree6099e5d29cdea2c55f9265359134f58aedc5bcb5
parentf9c6ffc6c63e0f7862616bdf146a767172044f7f (diff)
version 1.2.8
-rw-r--r--README.md2
-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/send_to_wandbox.py4
-rw-r--r--scripts/version.txt2
6 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 119fe42a..0b1f29ca 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ The framework can be used like any other if you don't want/need to mix productio
[![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/YSid52GI4qMDFvs1)
+[![Try it online](https://img.shields.io/badge/try%20it-online-orange.svg)](https://wandbox.org/permlink/cuvJ2XfsChtgIYyk)
<!--
[![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/doctest/doctest.h b/doctest/doctest.h
index a4e22c2e..e0d80248 100644
--- a/doctest/doctest.h
+++ b/doctest/doctest.h
@@ -53,8 +53,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 7
-#define DOCTEST_VERSION_STR "1.2.7"
+#define DOCTEST_VERSION_PATCH 8
+#define DOCTEST_VERSION_STR "1.2.8"
#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 7ceb43cc..765641c6 100644
--- a/doctest/parts/doctest_fwd.h
+++ b/doctest/parts/doctest_fwd.h
@@ -50,8 +50,8 @@
#define DOCTEST_VERSION_MAJOR 1
#define DOCTEST_VERSION_MINOR 2
-#define DOCTEST_VERSION_PATCH 7
-#define DOCTEST_VERSION_STR "1.2.7"
+#define DOCTEST_VERSION_PATCH 8
+#define DOCTEST_VERSION_STR "1.2.8"
#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 5b3bcd31..a8cbe8af 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.7"
+[doctest] doctest version is "1.2.8"
diff --git a/scripts/send_to_wandbox.py b/scripts/send_to_wandbox.py
index 07fb5256..2b480ccc 100644
--- a/scripts/send_to_wandbox.py
+++ b/scripts/send_to_wandbox.py
@@ -119,10 +119,10 @@ def main():
})
if 'status' in response and not 'compiler_error' in response: # and response['status'] == '0':
- print response['url']
+ print(response['url'])
return 0
else:
- print response
+ print(response)
return 1
diff --git a/scripts/version.txt b/scripts/version.txt
index a77d7d92..5975b143 100644
--- a/scripts/version.txt
+++ b/scripts/version.txt
@@ -1 +1 @@
-1.2.7 \ No newline at end of file
+1.2.8 \ No newline at end of file