REORG: include: move version.h to haproxy/

Few files were affected. The release scripts was updated.
diff --git a/include/common/version.h b/include/haproxy/version.h
similarity index 92%
rename from include/common/version.h
rename to include/haproxy/version.h
index b38104f..446ce5a 100644
--- a/include/common/version.h
+++ b/include/haproxy/version.h
@@ -1,8 +1,8 @@
 /*
- * include/common/version.h
+ * include/haproxy/version.h
  * This file serves as a template for future include files.
  *
- * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
+ * Copyright (C) 2000-2020 Willy Tarreau - w@1wt.eu
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef _COMMON_VERSION_H
-#define _COMMON_VERSION_H
+#ifndef _HAPROXY_VERSION_H
+#define _HAPROXY_VERSION_H
 
 #include <haproxy/api.h>
 
@@ -82,5 +82,5 @@
 extern char haproxy_date[];
 extern char stats_version_string[];
 
-#endif /* _COMMON_VERSION_H */
+#endif /* _HAPROXY_VERSION_H */
 
diff --git a/scripts/create-release b/scripts/create-release
index bc87e82..b8a867c 100755
--- a/scripts/create-release
+++ b/scripts/create-release
@@ -197,7 +197,7 @@
 
 echo "Updating version.h ..."
 sed -e "s:^\(#define\s*PRODUCT_BRANCH\s*\)\"[^\"]*\":\1\"$BRANCH\":" \
-    -i include/common/version.h
+    -i include/haproxy/version.h
 
 if [ -n "$INTERACTIVE" ]; then
 	vi CHANGELOG VERSION VERDATE \
diff --git a/src/cli.c b/src/cli.c
index 381a9e6..9212651 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -35,7 +35,7 @@
 #include <common/ticks.h>
 #include <common/time.h>
 #include <common/uri_auth.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 #include <common/base64.h>
 
 #include <types/applet.h>
diff --git a/src/haproxy.c b/src/haproxy.c
index 0e71ba7..2351aed 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -94,7 +94,7 @@
 #include <common/standard.h>
 #include <common/time.h>
 #include <common/uri_auth.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 #include <common/hathreads.h>
 
 #include <types/capture.h>
diff --git a/src/http_acl.c b/src/http_acl.c
index 5a8c634..06c5d71 100644
--- a/src/http_acl.c
+++ b/src/http_acl.c
@@ -22,7 +22,7 @@
 #include <common/http.h>
 #include <common/memory.h>
 #include <common/standard.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/global.h>
 
diff --git a/src/http_act.c b/src/http_act.c
index d116f1d..1918aa5 100644
--- a/src/http_act.c
+++ b/src/http_act.c
@@ -24,7 +24,7 @@
 #include <common/memory.h>
 #include <common/standard.h>
 #include <common/uri_auth.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/capture.h>
 #include <types/global.h>
diff --git a/src/http_conv.c b/src/http_conv.c
index d83541d..83c6bb3 100644
--- a/src/http_conv.c
+++ b/src/http_conv.c
@@ -22,7 +22,7 @@
 #include <common/http.h>
 #include <common/memory.h>
 #include <common/standard.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/capture.h>
 #include <types/global.h>
diff --git a/src/http_fetch.c b/src/http_fetch.c
index 96c774b..0ea509c 100644
--- a/src/http_fetch.c
+++ b/src/http_fetch.c
@@ -25,7 +25,7 @@
 #include <common/htx.h>
 #include <common/memory.h>
 #include <common/standard.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/global.h>
 
diff --git a/src/http_rules.c b/src/http_rules.c
index a2a4e05..2661062 100644
--- a/src/http_rules.c
+++ b/src/http_rules.c
@@ -23,7 +23,7 @@
 #include <common/http.h>
 #include <common/memory.h>
 #include <common/standard.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/capture.h>
 #include <types/global.h>
diff --git a/src/log.c b/src/log.c
index 87b12fc..a8bf820 100644
--- a/src/log.c
+++ b/src/log.c
@@ -27,7 +27,7 @@
 #include <haproxy/api.h>
 #include <common/standard.h>
 #include <common/time.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/cli.h>
 #include <types/global.h>
diff --git a/src/mworker.c b/src/mworker.c
index f41ee9f..95c06bb 100644
--- a/src/mworker.c
+++ b/src/mworker.c
@@ -20,7 +20,7 @@
 #include <haproxy/api.h>
 #include <common/cfgparse.h>
 #include <common/mini-clist.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/cli.h>
 #include <types/global.h>
diff --git a/src/proto_sockpair.c b/src/proto_sockpair.c
index a8b78ca..8a0773c 100644
--- a/src/proto_sockpair.c
+++ b/src/proto_sockpair.c
@@ -32,7 +32,7 @@
 #include <common/mini-clist.h>
 #include <common/standard.h>
 #include <common/time.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/global.h>
 
diff --git a/src/proto_uxst.c b/src/proto_uxst.c
index d41e1c0..e9b85dd 100644
--- a/src/proto_uxst.c
+++ b/src/proto_uxst.c
@@ -32,7 +32,7 @@
 #include <common/mini-clist.h>
 #include <common/standard.h>
 #include <common/time.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 
 #include <types/global.h>
 
diff --git a/src/stats.c b/src/stats.c
index bfe7acc..8cb1840 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -35,7 +35,7 @@
 #include <common/ticks.h>
 #include <common/time.h>
 #include <common/uri_auth.h>
-#include <common/version.h>
+#include <haproxy/version.h>
 #include <common/base64.h>
 
 #include <types/applet.h>
diff --git a/src/version.c b/src/version.c
index dae7b3d..99a8577 100644
--- a/src/version.c
+++ b/src/version.c
@@ -4,7 +4,7 @@
  * code version.
  */
 
-#include <common/version.h>
+#include <haproxy/version.h>
 
 /* These ones are made variables and not constants so that they are stored into
  * the data region and prominently appear in core files.