From 2dfe3e8d537d57a37a1b1a09696d9e8b30f0c26e Mon Sep 17 00:00:00 2001 From: Vast342 Date: Sat, 8 Jun 2024 21:26:54 -0400 Subject: [PATCH] Update Version Number, bench: 10657336 --- CMakeLists.txt | 2 +- src/uci.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae96033..1f19f72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # initializing stuff cmake_minimum_required(VERSION 3.11) -project(Clarity VERSION 6.0.0 LANGUAGES C CXX) +project(Clarity VERSION 7.0.0 LANGUAGES C CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_VERBOSE_MAKEFILE ON) diff --git a/src/uci.cpp b/src/uci.cpp index 6452597..9e626f9 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -111,7 +111,7 @@ void loadPosition(const std::vector& bits) { // has the engine identify itself when the GUI says uci void identify() { - std::cout << "id name Clarity V6.0.0" << std::endl; + std::cout << "id name Clarity V7.0.0" << std::endl; std::cout << "id author Vast" << std::endl; std::cout << "option name Hash type spin default 64 min 1 max 2048" << std::endl; std::cout << "option name Threads type spin default 1 min 1 max 64" << std::endl;