Restore development version
authorFabian Fichter <ianfab@users.noreply.github.com>
Sat, 1 Feb 2020 00:10:03 +0000 (01:10 +0100)
committerFabian Fichter <ianfab@users.noreply.github.com>
Sat, 1 Feb 2020 00:10:03 +0000 (01:10 +0100)
src/misc.cpp

index 09f070d..e9cd096 100644 (file)
@@ -56,7 +56,7 @@ namespace {
 
 /// Version number. If Version is left empty, then compile date in the format
 /// DD-MM-YY and show in engine_info.
-const string Version = "11";
+const string Version = "";
 
 /// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
 /// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
@@ -145,7 +145,7 @@ const string engine_info(bool to_uci) {
   ss << (Is64Bit ? " 64" : "")
      << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
      << (to_uci  ? "\nid author ": " by ")
-     << "F. Fichter";
+     << "Fabian Fichter";
 
   return ss.str();
 }