diff --git a/Cargo.lock b/Cargo.lock index 9602dfe..b9724b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,7 +409,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "requin" -version = "1.1.0" +version = "1.2.0" dependencies = [ "bitfield", "colored", diff --git a/Cargo.toml b/Cargo.toml index 0068e3a..2038d81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "requin" -version = "1.1.0" +version = "1.2.0" authors = ["James Tan "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index a6520f9..5588bde 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,7 @@ use structopt::StructOpt; #[structopt( name = "requin", about = "A CLI chess program with a chess engine.", - version = "1.1.0" + version = "1.2.0" )] struct Opt { #[structopt( diff --git a/src/uci/handler.rs b/src/uci/handler.rs index 591aaa7..cc9f1e4 100644 --- a/src/uci/handler.rs +++ b/src/uci/handler.rs @@ -135,7 +135,7 @@ fn uci(state: ArcMutexUCIState, mut output: W) { let mut state = state.lock().unwrap(); state.is_initialized = true; - writeln!(output, "id name Requin v1.1.0").unwrap(); + writeln!(output, "id name Requin v1.2.0").unwrap(); writeln!(output, "id author James Tan").unwrap(); for uci_option in UCI_OPTIONS.iter() { @@ -302,7 +302,7 @@ mod test { assert_eq!( std::str::from_utf8(&output_buffer.get_inner().lock().unwrap()).unwrap(), vec![ - "id name Requin v1.1.0\n", + "id name Requin v1.2.0\n", "id author James Tan\n", "option name NumThreads type spin default 16 min 1 max 32\n", "uciok\n"