From c3718c378c17a8ff0d5040ebb2399355a54ab0d6 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 7 Nov 2014 09:45:02 +0100 Subject: [PATCH] Alter version number to 2.03 --- ChangeLog | 2 ++ configure.ac | 2 +- main.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 49caed5..61ae418 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +=========2.0.3================== +- Bugfix, removing a debug printf which would forward all engine output to the GUI as comment. (Which would cause problems if the line contained "not found".) =========2.0.2================== - The Polyglot Affinity option was activated to set the proces affinity mask on Windows, and turned into a string option to allow it to be given in hexadecimal. - The makefile for building with MSVC was repaired, and several docs updated. diff --git a/configure.ac b/configure.ac index 623b78d..cab78a1 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([polyglot], [2.0.2], [bug-xboard@gnu.org]) +AC_INIT([polyglot], [2.0.3], [bug-xboard@gnu.org]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([mainloop.c]) AC_CONFIG_HEADER([config.h]) diff --git a/main.c b/main.c index 8b46e49..5133cf3 100644 --- a/main.c +++ b/main.c @@ -39,7 +39,7 @@ // constants -static const char * const Version = "2.0.2"; +static const char * const Version = "2.0.3"; static const char * const HelpMessage = "\ SYNTAX\n\ * polyglot [configfile] [-noini] [-ec engine] [-ed enginedirectory] [-en enginename] [-log true/false] [-lf logfile] [-pg =]* [-uci =]*\n\ -- 1.7.0.4