patch 8.1.0214: +autochdir feature not reported by has() or :version

Problem:    +autochdir feature not reported by has() or :version.
Solution:   Add the feature in the list.
diff --git a/src/evalfunc.c b/src/evalfunc.c
index a9f6c5b..23cdeb4 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -6045,6 +6045,9 @@
 	"arabic",
 #endif
 	"autocmd",
+#ifdef FEAT_AUTOCHDIR
+       "autochdir",
+#endif
 #ifdef FEAT_AUTOSERVERNAME
 	"autoservername",
 #endif
diff --git a/src/version.c b/src/version.c
index 830de26..087bc63 100644
--- a/src/version.c
+++ b/src/version.c
@@ -101,6 +101,11 @@
 	"-arabic",
 #endif
 	"+autocmd",
+#ifdef FEAT_AUTOCHDIR
+       "+autochdir",
+#else
+       "-autochdir",
+#endif
 #ifdef FEAT_AUTOSERVERNAME
 	"+autoservername",
 #else
@@ -794,6 +799,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    214,
+/**/
     213,
 /**/
     212,