From d346764cd871196e430b0bfacb59779c249c01bd Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Sat, 1 Feb 2020 01:10:03 +0100 Subject: [PATCH] Restore development version --- src/misc.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc.cpp b/src/misc.cpp index 09f070d..e9cd096 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -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(); } -- 1.7.0.4