patch 8.1.1163: codecov does not report all the coverage information

Problem:    Codecov does not report all the coverage information.
Solution:   Make a second run with the nested execution output, expect that
            Codecov will merge the results.
diff --git a/.travis.yml b/.travis.yml
index d683b13..240de51 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -170,6 +170,9 @@
   - |
     if [[ "${COVERAGE}" = "yes" ]]; then
       (cd "${SRCDIR}" && bash <(curl -s https://codecov.io/bash))
+      # Also do this for nested executions, codecov will merge the results.
+      mv "${SRCDIR}"/testdir/nested/* "${SRCDIR}"/objects
+      (cd "${SRCDIR}" && bash <(curl -s https://codecov.io/bash))
     fi
 
 # vim:set sts=2 sw=2 tw=0 et:
diff --git a/src/version.c b/src/version.c
index 88180a1..94f1339 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1163,
+/**/
     1162,
 /**/
     1161,