From 37048de9f3d05ca18f8778410d28010f8940d8b4 Mon Sep 17 00:00:00 2001 From: James Tan Date: Sun, 10 Apr 2022 20:49:08 -0400 Subject: [PATCH] Bump app version to 1.3.0 for release --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- src/uci/handler.rs | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f068da9..3b0d86f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,7 +409,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "requin" -version = "1.2.0" +version = "1.3.0" dependencies = [ "bitfield", "colored", diff --git a/Cargo.toml b/Cargo.toml index 8ed84cf..ee3bb27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "requin" -version = "1.2.0" +version = "1.3.0" authors = ["James Tan "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index 5588bde..5e5ee18 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.2.0" + version = "1.3.0" )] struct Opt { #[structopt( diff --git a/src/uci/handler.rs b/src/uci/handler.rs index cc9f1e4..c9100d8 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.2.0").unwrap(); + writeln!(output, "id name Requin v1.3.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.2.0\n", + "id name Requin v1.3.0\n", "id author James Tan\n", "option name NumThreads type spin default 16 min 1 max 32\n", "uciok\n"