summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--other/travis/env-linux.sh2
-rw-r--r--other/travis/env-osx.sh2
-rw-r--r--toxcore/tox.h2
3 files changed, 5 insertions, 1 deletions
diff --git a/other/travis/env-linux.sh b/other/travis/env-linux.sh
index 68687a2b..fca8a412 100644
--- a/other/travis/env-linux.sh
+++ b/other/travis/env-linux.sh
@@ -15,6 +15,8 @@ TESTS() {
15 "$@" || { 15 "$@" || {
16 if [ $COUNT -gt 1 ]; then 16 if [ $COUNT -gt 1 ]; then
17 TESTS `expr $COUNT - 1` "$@" 17 TESTS `expr $COUNT - 1` "$@"
18 else
19 false
18 fi 20 fi
19 } 21 }
20} 22}
diff --git a/other/travis/env-osx.sh b/other/travis/env-osx.sh
index 747df32d..af1794f4 100644
--- a/other/travis/env-osx.sh
+++ b/other/travis/env-osx.sh
@@ -14,6 +14,8 @@ TESTS() {
14 "$@" || { 14 "$@" || {
15 if [ $COUNT -gt 1 ]; then 15 if [ $COUNT -gt 1 ]; then
16 TESTS `expr $COUNT - 1` "$@" 16 TESTS `expr $COUNT - 1` "$@"
17 else
18 false
17 fi 19 fi
18 } 20 }
19} 21}
diff --git a/toxcore/tox.h b/toxcore/tox.h
index c697be64..48cb8271 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180 * The patch or revision number. Incremented when bugfixes are applied without 180 * The patch or revision number. Incremented when bugfixes are applied without
181 * changing any functionality or API or ABI. 181 * changing any functionality or API or ABI.
182 */ 182 */
183#define TOX_VERSION_PATCH 5 183#define TOX_VERSION_PATCH 6
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186