Skip to content

Commit 2dfe3e8

Browse files
committed
Update Version Number, bench: 10657336
1 parent 1e1b7ff commit 2dfe3e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# initializing stuff
22
cmake_minimum_required(VERSION 3.11)
3-
project(Clarity VERSION 6.0.0 LANGUAGES C CXX)
3+
project(Clarity VERSION 7.0.0 LANGUAGES C CXX)
44
set(CMAKE_CXX_STANDARD 20)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)
66
set(CMAKE_VERBOSE_MAKEFILE ON)

src/uci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void loadPosition(const std::vector<std::string>& bits) {
111111

112112
// has the engine identify itself when the GUI says uci
113113
void identify() {
114-
std::cout << "id name Clarity V6.0.0" << std::endl;
114+
std::cout << "id name Clarity V7.0.0" << std::endl;
115115
std::cout << "id author Vast" << std::endl;
116116
std::cout << "option name Hash type spin default 64 min 1 max 2048" << std::endl;
117117
std::cout << "option name Threads type spin default 1 min 1 max 64" << std::endl;

0 commit comments

Comments
 (0)