Skip to content

Commit 37048de

Browse files
committed
Bump app version to 1.3.0 for release
1 parent 41dce7d commit 37048de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "requin"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
authors = ["James Tan <james_tan97@outlook.com>"]
55
edition = "2018"
66

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use structopt::StructOpt;
66
#[structopt(
77
name = "requin",
88
about = "A CLI chess program with a chess engine.",
9-
version = "1.2.0"
9+
version = "1.3.0"
1010
)]
1111
struct Opt {
1212
#[structopt(

src/uci/handler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ fn uci<W: Write + Send + 'static>(state: ArcMutexUCIState, mut output: W) {
135135
let mut state = state.lock().unwrap();
136136
state.is_initialized = true;
137137

138-
writeln!(output, "id name Requin v1.2.0").unwrap();
138+
writeln!(output, "id name Requin v1.3.0").unwrap();
139139
writeln!(output, "id author James Tan").unwrap();
140140

141141
for uci_option in UCI_OPTIONS.iter() {
@@ -302,7 +302,7 @@ mod test {
302302
assert_eq!(
303303
std::str::from_utf8(&output_buffer.get_inner().lock().unwrap()).unwrap(),
304304
vec![
305-
"id name Requin v1.2.0\n",
305+
"id name Requin v1.3.0\n",
306306
"id author James Tan\n",
307307
"option name NumThreads type spin default 16 min 1 max 32\n",
308308
"uciok\n"

0 commit comments

Comments
 (0)