patch 9.0.1103: jq files are not recognized

Problem:    jq files are not recognized.
Solution:   Add detection of Jq files. (David McDonald, closes #11743)
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 81db06e..f63e578 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -996,6 +996,9 @@
 " Jovial
 au BufNewFile,BufRead *.jov,*.j73,*.jovial	setf jovial
 
+" Jq
+au BufNewFile,BufRead *.jq			setf jq
+
 " JSON5
 au BufNewFile,BufRead *.json5			setf json5
 
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim
index a99aa32..2123160 100644
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -286,6 +286,7 @@
     \ 'javascriptreact': ['file.jsx'],
     \ 'jess': ['file.clp'],
     \ 'jgraph': ['file.jgr'],
+    \ 'jq': ['file.jq'],
     \ 'jovial': ['file.jov', 'file.j73', 'file.jovial'],
     \ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'],
     \ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.prettierrc', '.firebaserc', 'file.slnf'],
diff --git a/src/version.c b/src/version.c
index 429d9ce..b33f6d5 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1103,
+/**/
     1102,
 /**/
     1101,