X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=6ed0bdd0d9108a5633fde87664559bac1f2c40e3;hp=053ee67ecf6f7a79a75e25d29cf00c11837aa7f5;hb=9cb1f9f2655cd378eec9d88fd57a039a04396aae;hpb=9f800a25775ddb5335a20eac92d8d288ca74f4c2 diff --git a/src/misc.cpp b/src/misc.cpp index 053ee67e..6ed0bdd0 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 = ""; +const string Version = "11"; /// 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 @@ -140,6 +140,7 @@ const string engine_info(bool to_uci) { { date >> month >> day >> year; ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2); + ss << "-asn"; } ss << (Is64Bit ? " 64" : "")