Skip to content

Commit

Permalink
Bump application version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestjw committed Apr 1, 2022
1 parent 1338043 commit 3faee12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "requin"
version = "1.1.0"
version = "1.2.0"
authors = ["James Tan <james_tan97@outlook.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions src/uci/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ fn uci<W: Write + Send + 'static>(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() {
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 3faee12

Please sign in to comment.